diff options
author | Tom Tromey <tromey@redhat.com> | 2011-05-13 18:42:48 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-05-13 18:42:48 +0000 |
commit | 06826322cb4f08925577babb026bccea870b7b12 (patch) | |
tree | edda8964a08e868442a979baa904b2df2fcbbd7f /gdb/dwarf2loc.c | |
parent | 05272e115a3b5fa8feebffcaf3c73d41650ec559 (diff) | |
download | gdb-06826322cb4f08925577babb026bccea870b7b12.zip gdb-06826322cb4f08925577babb026bccea870b7b12.tar.gz gdb-06826322cb4f08925577babb026bccea870b7b12.tar.bz2 |
* dwarf2loc.c (disassemble_dwarf_expression): Fix instruction
offset display.
Diffstat (limited to 'gdb/dwarf2loc.c')
-rw-r--r-- | gdb/dwarf2loc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dwarf2loc.c b/gdb/dwarf2loc.c index 64cc5e5..9afb186 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) { |