summaryrefslogtreecommitdiff
path: root/gdb/dwarf2loc.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-05-13 18:42:48 +0000
committerTom Tromey <tromey@redhat.com>2011-05-13 18:42:48 +0000
commit06826322cb4f08925577babb026bccea870b7b12 (patch)
treeedda8964a08e868442a979baa904b2df2fcbbd7f /gdb/dwarf2loc.c
parent05272e115a3b5fa8feebffcaf3c73d41650ec559 (diff)
downloadbinutils-gdb-06826322cb4f08925577babb026bccea870b7b12.tar.gz
* dwarf2loc.c (disassemble_dwarf_expression): Fix instruction
offset display.
Diffstat (limited to 'gdb/dwarf2loc.c')
-rw-r--r--gdb/dwarf2loc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dwarf2loc.c b/gdb/dwarf2loc.c
index 64cc5e553c8..9afb186a5d2 100644
--- a/gdb/dwarf2loc.c
+++ b/gdb/dwarf2loc.c
@@ -2364,8 +2364,8 @@ disassemble_dwarf_expression (struct ui_file *stream,
if (!name)
error (_("Unrecognized DWARF opcode 0x%02x at %ld"),
- op, (long) (data - start));
- fprintf_filtered (stream, " % 4ld: %s", (long) (data - start), name);
+ op, (long) (data - 1 - start));
+ fprintf_filtered (stream, " % 4ld: %s", (long) (data - 1 - start), name);
switch (op)
{