aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-14 08:18:13 +0000
committerChris Lattner <sabre@nondot.org>2010-03-14 08:18:13 +0000
commit8d9aaba84e80d40093fa8e1fe452a5ddcb4cc7f7 (patch)
tree6685b8c697a430fdf77be19c881f5ff6258137ab
parent0397ada8ae1d1bc71037d8cd4a855d3ff04acbbb (diff)
downloadexternal_llvm-8d9aaba84e80d40093fa8e1fe452a5ddcb4cc7f7.zip
external_llvm-8d9aaba84e80d40093fa8e1fe452a5ddcb4cc7f7.tar.gz
external_llvm-8d9aaba84e80d40093fa8e1fe452a5ddcb4cc7f7.tar.bz2
don't use getDWLabel("label" anymore, always go through MMI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98485 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index fd3902d..3776942 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
@@ -1972,7 +1972,7 @@ void DwarfDebug::endScope(const MachineInstr *MI) {
if (I == DbgScopeEndMap.end())
return;
- MCSymbol *Label = getDWLabel("label", MMI->NextLabelID());
+ MCSymbol *Label = MMI->getLabelSym(MMI->NextLabelID());
Asm->OutStreamer.EmitLabel(Label);
SmallVector<DbgScope*, 2> &SD = I->second;
@@ -2220,7 +2220,7 @@ MCSymbol *DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, MDNode *S) {
assert(0 && "Unexpected scope info");
unsigned Src = GetOrCreateSourceID(Dir, Fn);
- MCSymbol *Label = getDWLabel("label", MMI->NextLabelID());
+ MCSymbol *Label = MMI->getLabelSym(MMI->NextLabelID());
Lines.push_back(SrcLineInfo(Line, Col, Src, Label));
if (TimePassesIsEnabled)