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:
authorCary Coutant <ccoutant@google.com>2013-03-01 23:23:33 +0400
committerCary Coutant <ccoutant@google.com>2013-03-01 23:23:33 +0400
commit15f47d5fa185e498463c2c2ea30b0d168a46e762 (patch)
tree481ef2d7cd822d456f635634db05c126b331a4c3 /include
parent4afefdec518583e56b834a3b28dba2fe61986dff (diff)
include/
* dwarf2.h (enum dwarf_sect): New enum type.
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/dwarf2.h14
2 files changed, 18 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index e3dcb5690..05e2a6cba 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2013-03-01 Cary Coutant <ccoutant@google.com>
+
+ * dwarf2.h (enum dwarf_sect): New enum type.
+
2013-02-19 Alan Modra <amodra@gmail.com>
* bfdlink.h (struct bfd_link_info): Delete emit_note_gnu_build_id.
diff --git a/include/dwarf2.h b/include/dwarf2.h
index e98505ac2..120e2c16b 100644
--- a/include/dwarf2.h
+++ b/include/dwarf2.h
@@ -376,6 +376,20 @@ enum dwarf_macro_record_type
#define DW_EH_PE_indirect 0x80
+/* Codes for the debug sections in a dwarf package (.dwp) file.
+ Extensions for Fission. See http://gcc.gnu.org/wiki/DebugFissionDWP. */
+enum dwarf_sect
+ {
+ DW_SECT_INFO = 1,
+ DW_SECT_TYPES = 2,
+ DW_SECT_ABBREV = 3,
+ DW_SECT_LINE = 4,
+ DW_SECT_LOC = 5,
+ DW_SECT_STR_OFFSETS = 6,
+ DW_SECT_MACINFO = 7,
+ DW_SECT_MACRO = 8,
+ DW_SECT_MAX = 8
+ };
#ifdef __cplusplus
extern "C" {