summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
diff options
context:
space:
mode:
authorJames Henderson <jh7370@my.bristol.ac.uk>2019-02-06 10:31:50 +0000
committerJames Henderson <jh7370@my.bristol.ac.uk>2019-02-06 10:31:50 +0000
commitb6b5b1a5921e2319cc40c6899b8fe1cdadc44ee7 (patch)
tree49b38c212c18d067da08bbefd7f6f82c4c814d07 /llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
parentcd1424aebb37d7aceea37f2c2740f1da42bf879b (diff)
downloadbcm5719-llvm-b6b5b1a5921e2319cc40c6899b8fe1cdadc44ee7.tar.gz
bcm5719-llvm-b6b5b1a5921e2319cc40c6899b8fe1cdadc44ee7.zip
[DebugInfo]Print correct value for special opcode address increment
The wrong variable was being used when printing the address increment in verbose output of .debug_line. This patch fixes this. Reviewed by: JDevlieghere Differential Revision: https://reviews.llvm.org/D57693 llvm-svn: 353288
Diffstat (limited to 'llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp')
-rw-r--r--llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
index 57a8a2cac4e..ac9b2e0d28f 100644
--- a/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
+++ b/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
@@ -817,8 +817,8 @@ Error DWARFDebugLine::LineTable::parse(
State.Row.Address += AddrOffset;
if (OS) {
- *OS << "address += " << ((uint32_t)AdjustOpcode)
- << ", line += " << LineOffset << "\n";
+ *OS << "address += " << AddrOffset << ", line += " << LineOffset
+ << "\n";
OS->indent(12);
State.Row.dump(*OS);
}
OpenPOWER on IntegriCloud