diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-07-03 08:53:50 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2009-07-03 08:53:50 +0000 |
commit | e490a1f83c1fe635ebb2e47cb4a55f5ef7ca063e (patch) | |
tree | 290ad97227853107036f61c7854ad065b2ebc8bb /include/elf | |
parent | 41592149117e63cc0c5154cfe3ea49907f950e5e (diff) | |
download | newlib-e490a1f83c1fe635ebb2e47cb4a55f5ef7ca063e.zip newlib-e490a1f83c1fe635ebb2e47cb4a55f5ef7ca063e.tar.gz newlib-e490a1f83c1fe635ebb2e47cb4a55f5ef7ca063e.tar.bz2 |
* dwarf2.h (enum dwarf_location_atom): Add DW_OP_implicit_value
and DW_OP_stack_value.
* dwarf.c (decode_location_expression): Handle DW_OP_stack_value
and DW_OP_implicit_value.
Diffstat (limited to 'include/elf')
-rw-r--r-- | include/elf/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/dwarf2.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 99805f1..640824e 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,8 @@ +2009-07-03 Jakub Jelinek <jakub@redhat.com> + + * dwarf2.h (enum dwarf_location_atom): Add DW_OP_implicit_value + and DW_OP_stack_value. + 2009-06-22 Alan Modra <amodra@bigpond.net.au> * ppc.h (R_PPC_RELAX*): Define as enum. diff --git a/include/elf/dwarf2.h b/include/elf/dwarf2.h index a7448dc..a22558d 100644 --- a/include/elf/dwarf2.h +++ b/include/elf/dwarf2.h @@ -541,6 +541,9 @@ enum dwarf_location_atom DW_OP_form_tls_address = 0x9b, DW_OP_call_frame_cfa = 0x9c, DW_OP_bit_piece = 0x9d, + /* DWARF 4 extensions. */ + DW_OP_implicit_value = 0x9e, + DW_OP_stack_value = 0x9f, /* GNU extensions. */ DW_OP_GNU_push_tls_address = 0xe0, DW_OP_GNU_uninit = 0xf0, |