diff options
Diffstat (limited to 'elfcpp')
-rw-r--r-- | elfcpp/ChangeLog | 5 | ||||
-rw-r--r-- | elfcpp/elfcpp.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog index 782b3cf40bd..7488984e9ca 100644 --- a/elfcpp/ChangeLog +++ b/elfcpp/ChangeLog @@ -1,3 +1,8 @@ +2010-08-12 Cary Coutant <ccoutant@google.com> + + * elfcpp.h (enum SHT): Add SHT_GNU_INCREMENTAL_SYMTAB, + SHT_GNU_INCREMENTAL_RELOCS. + 2010-08-04 Ian Lance Taylor <iant@google.com> * i386.h (R_386_IRELATIVE): Define. diff --git a/elfcpp/elfcpp.h b/elfcpp/elfcpp.h index 52b8b2534ee..c46fbf5a47f 100644 --- a/elfcpp/elfcpp.h +++ b/elfcpp/elfcpp.h @@ -365,6 +365,8 @@ enum SHT // The remaining values are not in the standard. // Incremental build data. SHT_GNU_INCREMENTAL_INPUTS = 0x6fff4700, + SHT_GNU_INCREMENTAL_SYMTAB = 0x6fff4701, + SHT_GNU_INCREMENTAL_RELOCS = 0x6fff4702, // Object attributes. SHT_GNU_ATTRIBUTES = 0x6ffffff5, // GNU style dynamic hash table. |