diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-15 23:19:27 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-15 23:19:27 +0000 |
commit | 35ef22cf530c4d3f2c1de83ae6a4186c1b1efa84 (patch) | |
tree | 448b5435d3f87d8e94969a89fd766afb4ae97511 /llvm/lib/Transforms/IPO/StripSymbols.cpp | |
parent | 798d565fd8a1f5a4a753587e5425efbdc59a5e0c (diff) | |
download | bcm5719-llvm-35ef22cf530c4d3f2c1de83ae6a4186c1b1efa84.tar.gz bcm5719-llvm-35ef22cf530c4d3f2c1de83ae6a4186c1b1efa84.zip |
DebugInfo: Gut DICompileUnit and DIFile
Continuing gutting `DIDescriptor` subclasses; this edition,
`DICompileUnit` and `DIFile`. In the name of PR23080.
llvm-svn: 235055
Diffstat (limited to 'llvm/lib/Transforms/IPO/StripSymbols.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/StripSymbols.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/IPO/StripSymbols.cpp b/llvm/lib/Transforms/IPO/StripSymbols.cpp index 39d8e7619de..ad7c5a08765 100644 --- a/llvm/lib/Transforms/IPO/StripSymbols.cpp +++ b/llvm/lib/Transforms/IPO/StripSymbols.cpp @@ -305,7 +305,7 @@ bool StripDeadDebugInfo::runOnModule(Module &M) { SmallVector<Metadata *, 64> LiveSubprograms; DenseSet<const MDNode *> VisitedSet; - for (DICompileUnit DIC : F.compile_units()) { + for (MDCompileUnit *DIC : F.compile_units()) { // Create our live subprogram list. MDSubprogramArray SPs = DIC->getSubprograms(); bool SubprogramChange = false; @@ -345,12 +345,12 @@ bool StripDeadDebugInfo::runOnModule(Module &M) { // subprogram list/global variable list with our new live subprogram/global // variable list. if (SubprogramChange) { - DIC.replaceSubprograms(MDTuple::get(C, LiveSubprograms)); + DIC->replaceSubprograms(MDTuple::get(C, LiveSubprograms)); Changed = true; } if (GlobalVariableChange) { - DIC.replaceGlobalVariables(MDTuple::get(C, LiveGlobalVariables)); + DIC->replaceGlobalVariables(MDTuple::get(C, LiveGlobalVariables)); Changed = true; } |