diff options
author | Devang Patel <dpatel@apple.com> | 2011-07-07 21:44:42 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-07-07 21:44:42 +0000 |
commit | 476df5f64f1536330af0dacdfce768efc625dc41 (patch) | |
tree | 89576f453709bd7a6f8f8b45af6424a8df1123a2 | |
parent | 18fb1d35db9e2160be3a5bd2950f7e0d206bdbb8 (diff) |
Add DEBUG message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134643 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 99d27e4c9c..5acef7a430 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1428,6 +1428,8 @@ DwarfDebug::collectVariableInfo(const MachineFunction *MF, SLabel = FunctionEndSym; else { const MachineInstr *End = HI[1]; + DEBUG(dbgs() << "DotDebugLoc Pair:\n" + << "\t" << *Begin << "\t" << *End << "\n"); if (End->isDebugValue()) SLabel = getLabelBeforeInsn(End); else { |