GNU Binutils with patches for OS216
Revisión | 0502a2b49c5a5c1f6de203c08e4d45509cd6a9fa (tree) |
---|---|
Tiempo | 2017-02-23 04:22:59 |
Autor | Jan Kratochvil <jan.kratochvil@redh...> |
Commiter | Jan Kratochvil |
Display user op byte
binutils/
2017-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
* dwarf.c (decode_location_expression): Display also OP.
@@ -1,3 +1,7 @@ | ||
1 | +2017-02-22 Jan Kratochvil <jan.kratochvil@redhat.com> | |
2 | + | |
3 | + * dwarf.c (decode_location_expression): Display also OP. | |
4 | + | |
1 | 5 | 2017-02-22 Maciej W. Rozycki <macro@imgtec.com> |
2 | 6 | |
3 | 7 | * readelf.c (process_version_sections) <SHT_GNU_verdef>: Print a |
@@ -1420,9 +1420,9 @@ decode_location_expression (unsigned char * data, | ||
1420 | 1420 | default: |
1421 | 1421 | if (op >= DW_OP_lo_user |
1422 | 1422 | && op <= DW_OP_hi_user) |
1423 | - printf (_("(User defined location op)")); | |
1423 | + printf (_("(User defined location op 0x%x)"), op); | |
1424 | 1424 | else |
1425 | - printf (_("(Unknown location op)")); | |
1425 | + printf (_("(Unknown location op 0x%x)"), op); | |
1426 | 1426 | /* No way to tell where the next op is, so just bail. */ |
1427 | 1427 | return need_frame_base; |
1428 | 1428 | } |