Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2011-04-30 15:01:35 +0400
committerJakub Jelinek <jakub@redhat.com>2011-04-30 15:01:35 +0400
commitcbec4110a232424225633a593512969aa8e10ac8 (patch)
tree09ae8b269efcc0b3f7a10305b8582a297d32b2b7 /include/dwarf2.h
parent42faed412857d4a0069d982d5c8cfe138b7a0197 (diff)
* 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.
Diffstat (limited to 'include/dwarf2.h')
-rw-r--r--include/dwarf2.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/dwarf2.h b/include/dwarf2.h
index 44b4328de..0b008661f 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,