diff options
author | Devang Patel <dpatel@apple.com> | 2010-03-30 18:07:00 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-03-30 18:07:00 +0000 |
commit | 67d94ab0f8dfb25a0d00dd4348b3c02ea284aee3 (patch) | |
tree | 4cd44cc2cd77342f4faa85f573719d81d7b277cc /llvm/lib/CodeGen | |
parent | 72683ff495f89437b6fa30603f2cbed237282ff7 (diff) | |
download | bcm5719-llvm-67d94ab0f8dfb25a0d00dd4348b3c02ea284aee3.tar.gz bcm5719-llvm-67d94ab0f8dfb25a0d00dd4348b3c02ea284aee3.zip |
There is no need to fall through after processing DBG_VALUE machine instruction.
llvm-svn: 99899
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index d76de693dff..d3d5b2992d2 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -2067,6 +2067,7 @@ void DwarfDebug::beginScope(const MachineInstr *MI) { DILoc.getScope().getNode()); DI->second->setDbgValueLabel(Label); } + return; } // Emit a label to indicate location change. This is used for line |