aboutsummaryrefslogtreecommitdiff
path: root/binutils/dwarf.c
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2011-05-10 09:08:37 +0000
committerTristan Gingold <gingold@adacore.com>2011-05-10 09:08:37 +0000
commit7e665af3af6fdf33dfcbecaa95ccdaa34b285008 (patch)
tree291b72ed707360d7aafc0d1163a0623de97f393c /binutils/dwarf.c
parentbc989cdc1ce4e96e07fcc668742251f3315365ec (diff)
downloadfsf-binutils-gdb-7e665af3af6fdf33dfcbecaa95ccdaa34b285008.zip
fsf-binutils-gdb-7e665af3af6fdf33dfcbecaa95ccdaa34b285008.tar.gz
fsf-binutils-gdb-7e665af3af6fdf33dfcbecaa95ccdaa34b285008.tar.bz2
2011-05-10 Tristan Gingold <gingold@adacore.com>
* dwarf.c (process_extended_line_op): Dump unknown records.
Diffstat (limited to 'binutils/dwarf.c')
-rw-r--r--binutils/dwarf.c24
1 files changed, 16 insertions, 8 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c
index b240af6..5102aec 100644
--- a/binutils/dwarf.c
+++ b/binutils/dwarf.c
@@ -376,14 +376,22 @@ process_extended_line_op (unsigned char *data, int is_stmt)
break;
default:
- if (op_code >= DW_LNE_lo_user
- /* The test against DW_LNW_hi_user is redundant due to
- the limited range of the unsigned char data type used
- for op_code. */
- /*&& op_code <= DW_LNE_hi_user*/)
- printf (_("user defined: length %d\n"), len - bytes_read);
- else
- printf (_("UNKNOWN: length %d\n"), len - bytes_read);
+ {
+ unsigned int rlen = len - bytes_read - 1;
+
+ if (op_code >= DW_LNE_lo_user
+ /* The test against DW_LNW_hi_user is redundant due to
+ the limited range of the unsigned char data type used
+ for op_code. */
+ /*&& op_code <= DW_LNE_hi_user*/)
+ printf (_("user defined: "));
+ else
+ printf (_("UNKNOWN: "));
+ printf (_("length %d ["), rlen);
+ for (; rlen; rlen--)
+ printf (" %02x", *data++);
+ printf ("]\n");
+ }
break;
}