diff options
author | ccoutant <ccoutant@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-03-01 23:35:58 +0000 |
---|---|---|
committer | ccoutant <ccoutant@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-03-01 23:35:58 +0000 |
commit | e82adc39212d9c66a8143b64137998a8f243b466 (patch) | |
tree | 9f2e1484091a0eb8dc4a90f418ad86efb2a257f7 /include | |
parent | 04437ab683ac60f7776c285e792f1b706e27ef92 (diff) | |
download | gcc-e82adc39212d9c66a8143b64137998a8f243b466.tar.gz |
include/
* dwarf2.h (enum dwarf_sect): New enum type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@196400 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/dwarf2.h | 14 |
2 files changed, 18 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index e071c48dfa7..03b4e63b89d 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-11 Sriraman Tallam <tmsriram@google.com> * plugin-api.h (enum ld_plugin_level): Assign integers diff --git a/include/dwarf2.h b/include/dwarf2.h index e98505ac2f9..120e2c16b48 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" { |