[llvm-commits] [llvm] r99899 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
Devang Patel
dpatel at apple.com
Tue Mar 30 11:07:00 PDT 2010
Author: dpatel
Date: Tue Mar 30 13:07:00 2010
New Revision: 99899
URL: http://llvm.org/viewvc/llvm-project?rev=99899&view=rev
Log:
There is no need to fall through after processing DBG_VALUE machine instruction.
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=99899&r1=99898&r2=99899&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Tue Mar 30 13:07:00 2010
@@ -2067,6 +2067,7 @@
DILoc.getScope().getNode());
DI->second->setDbgValueLabel(Label);
}
+ return;
}
// Emit a label to indicate location change. This is used for line
More information about the llvm-commits
mailing list