aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2011-06-22 15:03:19 +0000
committerJakub Jelinek <jakub@redhat.com>2011-06-22 15:03:19 +0000
commitf8b999f94554f44229f48a6c93fc14e715871091 (patch)
treee2aa65ff240d99dc69a889386b148ed4d0b477cf /include
parentc38c4bc5b298545effe1f4afb31d53d66153f189 (diff)
downloadfsf-binutils-gdb-f8b999f94554f44229f48a6c93fc14e715871091.zip
fsf-binutils-gdb-f8b999f94554f44229f48a6c93fc14e715871091.tar.gz
fsf-binutils-gdb-f8b999f94554f44229f48a6c93fc14e715871091.tar.bz2
* 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')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/dwarf2.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 6ff56e6..83c7bce 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-22 Jakub Jelinek <jakub@redhat.com>
+
+ * dwarf2.h (enum dwarf_location_atom): Add DW_OP_GNU_parameter_ref.
+
2011-06-20 Jakub Jelinek <jakub@redhat.com>
PR ld/12570
diff --git a/include/dwarf2.h b/include/dwarf2.h
index 0b00866..b2806ef 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,