diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-06-22 15:03:19 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2011-06-22 15:03:19 +0000 |
commit | a2cb987c635dbba9a473eaf149846c2c0c97a2c4 (patch) | |
tree | dec6f2b3d2a9256a7c828167ded7394697d58564 /include/dwarf2.h | |
parent | c80de4f9127c282c3f0d62af44b5ca4607f99ab9 (diff) | |
download | cygnal-a2cb987c635dbba9a473eaf149846c2c0c97a2c4.tar.gz cygnal-a2cb987c635dbba9a473eaf149846c2c0c97a2c4.tar.bz2 cygnal-a2cb987c635dbba9a473eaf149846c2c0c97a2c4.zip |
* dwarf2.h (enum dwarf_location_atom): Add DW_OP_GNU_parameter_ref.
* dwarf.c (decode_location_expression): For DW_OP_GNU_convert and
DW_OP_GNU_reinterpret, if uvalue is 0, don't add cu_offset.
Handle DW_OP_GNU_parameter_ref.
Diffstat (limited to 'include/dwarf2.h')
-rw-r--r-- | include/dwarf2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/dwarf2.h b/include/dwarf2.h index 0b008661f..b2806ef78 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -563,6 +563,8 @@ enum dwarf_location_atom DW_OP_GNU_deref_type = 0xf6, DW_OP_GNU_convert = 0xf7, DW_OP_GNU_reinterpret = 0xf9, + /* The GNU parameter ref extension. */ + DW_OP_GNU_parameter_ref = 0xfa, /* HP extensions. */ DW_OP_HP_unknown = 0xe0, /* Ouch, the same as GNU_push_tls_address. */ DW_OP_HP_is_value = 0xe1, |