summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
diff options
context:
space:
mode:
authorPaul Robinson <paul.robinson@sony.com>2016-11-29 22:41:16 +0000
committerPaul Robinson <paul.robinson@sony.com>2016-11-29 22:41:16 +0000
commit96de8c778bb954d01a10ce1251f6b52e89018698 (patch)
tree5e24997c148e2282cea951bcbf6c797310a5af8a /llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
parent17062a2bf6159649cab8fabf843e352e79ee77c5 (diff)
downloadbcm5719-llvm-96de8c778bb954d01a10ce1251f6b52e89018698.tar.gz
bcm5719-llvm-96de8c778bb954d01a10ce1251f6b52e89018698.zip
Emit 'no line' information for interesting 'orphan' instructions.
DWARF specifies that "line 0" really means "no appropriate source location" in the line table. Use this for branch targets and some other cases that have no specified source location, to prevent inheriting unfortunate line numbers from physically preceding instructions (which might be from completely unrelated source). Differential Revision: http://reviews.llvm.org/D24180 llvm-svn: 288212
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp b/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
index d30f106a939..5607242a7f1 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
@@ -201,8 +201,10 @@ void DebugHandlerBase::endInstruction() {
assert(CurMI != nullptr);
// Don't create a new label after DBG_VALUE instructions.
// They don't generate code.
- if (!CurMI->isDebugValue())
+ if (!CurMI->isDebugValue()) {
PrevLabel = nullptr;
+ PrevInstBB = CurMI->getParent();
+ }
DenseMap<const MachineInstr *, MCSymbol *>::iterator I =
LabelsAfterInsn.find(CurMI);
OpenPOWER on IntegriCloud