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 | 7ed631157738132f88125bc374850326f9b2f8cd (patch) | |
tree | dc72fa65607689337086ffe35eb19d279ffaed22 /lib | |
parent | 0179e977234fef45b1877eb93a3c7565cdd1862d (diff) |
There is no need to fall through after processing DBG_VALUE machine instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index d76de693df..d3d5b2992d 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/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 |