[llvm] r241470 - DIBuilder: Don't rauw null pointers with empty arrays in finalize().
Adrian Prantl
aprantl at apple.com
Mon Jul 6 09:36:02 PDT 2015
Author: adrian
Date: Mon Jul 6 11:36:02 2015
New Revision: 241470
URL: http://llvm.org/viewvc/llvm-project?rev=241470&view=rev
Log:
DIBuilder: Don't rauw null pointers with empty arrays in finalize().
This makes the IR a little easier to read.
Modified:
llvm/trunk/lib/IR/DIBuilder.cpp
Modified: llvm/trunk/lib/IR/DIBuilder.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/DIBuilder.cpp?rev=241470&r1=241469&r2=241470&view=diff
==============================================================================
--- llvm/trunk/lib/IR/DIBuilder.cpp (original)
+++ llvm/trunk/lib/IR/DIBuilder.cpp Mon Jul 6 11:36:02 2015
@@ -90,10 +90,14 @@ void DIBuilder::finalize() {
for (unsigned I = 0, E = AllRetainTypes.size(); I < E; I++)
if (RetainSet.insert(AllRetainTypes[I]).second)
RetainValues.push_back(AllRetainTypes[I]);
- CUNode->replaceRetainedTypes(MDTuple::get(VMContext, RetainValues));
+
+ if (!RetainValues.empty())
+ CUNode->replaceRetainedTypes(MDTuple::get(VMContext, RetainValues));
DISubprogramArray SPs = MDTuple::get(VMContext, AllSubprograms);
- CUNode->replaceSubprograms(SPs.get());
+ if (!AllSubprograms.empty())
+ CUNode->replaceSubprograms(SPs.get());
+
for (auto *SP : SPs) {
if (MDTuple *Temp = SP->getVariables().get()) {
const auto &PV = PreservedVariables.lookup(SP);
@@ -103,11 +107,13 @@ void DIBuilder::finalize() {
}
}
- CUNode->replaceGlobalVariables(MDTuple::get(VMContext, AllGVs));
+ if (!AllGVs.empty())
+ CUNode->replaceGlobalVariables(MDTuple::get(VMContext, AllGVs));
- CUNode->replaceImportedEntities(MDTuple::get(
- VMContext, SmallVector<Metadata *, 16>(AllImportedModules.begin(),
- AllImportedModules.end())));
+ if (!AllImportedModules.empty())
+ CUNode->replaceImportedEntities(MDTuple::get(
+ VMContext, SmallVector<Metadata *, 16>(AllImportedModules.begin(),
+ AllImportedModules.end())));
// Now that all temp nodes have been replaced or deleted, resolve remaining
// cycles.
More information about the llvm-commits
mailing list