aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2009-07-09 22:16:56 +0200
committerTom Tromey <tromey@gcc.gnu.org>2009-07-09 20:16:56 +0000
commit116b07221768e5ab5e602b4b3e01c8685e63a451 (patch)
treeda3f9f2f6fa835c3662a4ecf60fa44a119d32237 /include
parenta80b05740893248fee5750aa1cad4b5b64f46219 (diff)
downloadgcc-116b07221768e5ab5e602b4b3e01c8685e63a451.zip
gcc-116b07221768e5ab5e602b4b3e01c8685e63a451.tar.gz
gcc-116b07221768e5ab5e602b4b3e01c8685e63a451.tar.bz2
dwarf2.h (enum dwarf_location_atom): Add DW_OP_implicit_value and DW_OP_stack_value.
2009-07-09 Jakub Jelinek <jakub@redhat.com> * dwarf2.h (enum dwarf_location_atom): Add DW_OP_implicit_value and DW_OP_stack_value. From-SVN: r149438
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/dwarf2.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index ccd9274..ef802e5 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+2009-07-09 Jakub Jelinek <jakub@redhat.com>
+
+ * dwarf2.h (enum dwarf_location_atom): Add DW_OP_implicit_value
+ and DW_OP_stack_value.
+
2009-07-09 Tom Tromey <tromey@redhat.com>
* elf/dwarf2.h: Remove, renaming to...
diff --git a/include/dwarf2.h b/include/dwarf2.h
index f0dbfd2..7021104 100644
--- a/include/dwarf2.h
+++ b/include/dwarf2.h
@@ -548,6 +548,10 @@ enum dwarf_location_atom
DW_OP_call_frame_cfa = 0x9c,
DW_OP_bit_piece = 0x9d,
+ /* DWARF 4 extensions. */
+ DW_OP_implicit_value = 0x9e,
+ DW_OP_stack_value = 0x9f,
+
DW_OP_lo_user = 0xe0, /* Implementation-defined range start. */
DW_OP_hi_user = 0xff, /* Implementation-defined range end. */