diff options
author | Cary Coutant <ccoutant@google.com> | 2013-03-01 23:40:38 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2013-03-01 23:40:38 +0000 |
commit | 374694f0785443b42dd07793ef5ae1684ef310bf (patch) | |
tree | 4424e59fcc848799a6c31496edc3671a28b45e32 /include/dwarf2.h | |
parent | d5834edbc87adeb263abe8e1df77e87f265b2e2c (diff) | |
download | gdb-374694f0785443b42dd07793ef5ae1684ef310bf.zip gdb-374694f0785443b42dd07793ef5ae1684ef310bf.tar.gz gdb-374694f0785443b42dd07793ef5ae1684ef310bf.tar.bz2 |
Restore patch lost in last merge from GCC.
include/
* dwarf2.h (enum dwarf_sect): New enum type.
Diffstat (limited to 'include/dwarf2.h')
-rw-r--r-- | include/dwarf2.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/dwarf2.h b/include/dwarf2.h index e98505a..120e2c1 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" { |