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:
authorCaroline Tice <cmtice@google.com>2007-05-18 23:42:42 +0400
committerCaroline Tice <cmtice@google.com>2007-05-18 23:42:42 +0400
commit7ce1923125ad3e0e1205e532c0f5318b4744382a (patch)
treeebd8d59c2de989c7c0380ba4850ef06ddf331ae3
parent8aab2bc260f2429bbe71bb366e2d39e573864098 (diff)
Add ability to report when a variable's value is uninitialized,
based on information provided by the compiler. Also add new DWARF OP, DW_OP_GNU_uninit, for this purpose.
-rw-r--r--include/elf/dwarf2.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/elf/dwarf2.h b/include/elf/dwarf2.h
index 264952af1..2683f5131 100644
--- a/include/elf/dwarf2.h
+++ b/include/elf/dwarf2.h
@@ -540,6 +540,7 @@ enum dwarf_location_atom
DW_OP_bit_piece = 0x9d,
/* GNU extensions. */
DW_OP_GNU_push_tls_address = 0xe0,
+ DW_OP_GNU_uninit = 0xf0,
/* HP extensions. */
DW_OP_HP_unknown = 0xe0, /* Ouch, the same as GNU_push_tls_address. */
DW_OP_HP_is_value = 0xe1,