From: Jakub Jelinek Date: Sat, 30 Apr 2011 11:01:35 +0000 (+0000) Subject: * dwarf2.h (DW_OP_GNU_const_type, DW_OP_GNU_regval_type, X-Git-Tag: sid-snapshot-20110501~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d46ab8325e23885dd4f9df8cb1863083f7cf763e;p=external%2Fbinutils.git * dwarf2.h (DW_OP_GNU_const_type, DW_OP_GNU_regval_type, DW_OP_GNU_deref_type, DW_OP_GNU_convert, DW_OP_GNU_reinterpret): New. --- diff --git a/include/ChangeLog b/include/ChangeLog index dfdc191..231f4ba 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2011-04-30 Jakub Jelinek + + * dwarf2.h (DW_OP_GNU_const_type, DW_OP_GNU_regval_type, + DW_OP_GNU_deref_type, DW_OP_GNU_convert, DW_OP_GNU_reinterpret): New. + 2011-04-25 Jan Kratochvil * bfdlink.h (ENUM_BITFIELD): Remove. diff --git a/include/dwarf2.h b/include/dwarf2.h index 44b4328..0b00866 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -556,6 +556,13 @@ enum dwarf_location_atom /* The GNU entry value extension. See http://www.dwarfstd.org/ShowIssue.php?issue=100909.1&type=open . */ DW_OP_GNU_entry_value = 0xf3, + /* The GNU typed stack extension. + See http://www.dwarfstd.org/doc/040408.1.html . */ + DW_OP_GNU_const_type = 0xf4, + DW_OP_GNU_regval_type = 0xf5, + DW_OP_GNU_deref_type = 0xf6, + DW_OP_GNU_convert = 0xf7, + DW_OP_GNU_reinterpret = 0xf9, /* HP extensions. */ DW_OP_HP_unknown = 0xe0, /* Ouch, the same as GNU_push_tls_address. */ DW_OP_HP_is_value = 0xe1,