mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 16:05:56 +08:00
2012-09-06 Cary Coutant <ccoutant@google.com>
binutils/ * dwarf.c (decode_location_expression): Add DW_OP_GNU_const_index.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2012-09-06 Cary Coutant <ccoutant@google.com>
|
||||||
|
|
||||||
|
* dwarf.c (decode_location_expression): Add
|
||||||
|
DW_OP_GNU_const_index.
|
||||||
|
|
||||||
2012-09-06 Nick Clifton <nickc@redhat.com>
|
2012-09-06 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* doc/binutils.texi (nm): Alpha-sort the option descriptions.
|
* doc/binutils.texi (nm): Alpha-sort the option descriptions.
|
||||||
|
@ -1192,6 +1192,11 @@ decode_location_expression (unsigned char * data,
|
|||||||
data += bytes_read;
|
data += bytes_read;
|
||||||
printf ("DW_OP_GNU_addr_index <0x%s>", dwarf_vmatoa ("x", uvalue));
|
printf ("DW_OP_GNU_addr_index <0x%s>", dwarf_vmatoa ("x", uvalue));
|
||||||
break;
|
break;
|
||||||
|
case DW_OP_GNU_const_index:
|
||||||
|
uvalue = read_leb128 (data, &bytes_read, 0);
|
||||||
|
data += bytes_read;
|
||||||
|
printf ("DW_OP_GNU_const_index <0x%s>", dwarf_vmatoa ("x", uvalue));
|
||||||
|
break;
|
||||||
|
|
||||||
/* HP extensions. */
|
/* HP extensions. */
|
||||||
case DW_OP_HP_is_value:
|
case DW_OP_HP_is_value:
|
||||||
|
Reference in New Issue
Block a user