diff options
author | Cary Coutant <ccoutant@google.com> | 2013-03-01 19:23:33 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2013-03-01 19:23:33 +0000 |
commit | 8a7bad181f23dd5294b7cd8f59b7a6689dd544f7 (patch) | |
tree | c9eaf35304c9f2eff35f7bc8851eed8358df537a /include/dwarf2.h | |
parent | e362b51003ad60f4984bf7bed3bc02259db10546 (diff) | |
download | gdb-8a7bad181f23dd5294b7cd8f59b7a6689dd544f7.zip gdb-8a7bad181f23dd5294b7cd8f59b7a6689dd544f7.tar.gz gdb-8a7bad181f23dd5294b7cd8f59b7a6689dd544f7.tar.bz2 |
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" { |