diff options
Diffstat (limited to 'elfcpp')
-rw-r--r-- | elfcpp/ChangeLog | 5 | ||||
-rw-r--r-- | elfcpp/mips.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog index b554287..01bb101 100644 --- a/elfcpp/ChangeLog +++ b/elfcpp/ChangeLog @@ -1,3 +1,8 @@ +2014-09-15 Andrew Bennett <andrew.bennett@imgtec.com> + Matthew Fortune <matthew.fortune@imgtec.com> + + * mips.h (E_MIPS_ARCH_32R6, E_MIPS_ARCH_64R6): New enum constants. + 2014-09-02 Cary Coutant <ccoutant@google.com> * elfcpp_file.h (Elf_file::shnum): New const function. diff --git a/elfcpp/mips.h b/elfcpp/mips.h index ccb017f..a59c3e2 100644 --- a/elfcpp/mips.h +++ b/elfcpp/mips.h @@ -250,6 +250,10 @@ enum E_MIPS_ARCH_32R2 = 0x70000000, // -mips64r2 code. E_MIPS_ARCH_64R2 = 0x80000000, + // -mips32r6 code. + E_MIPS_ARCH_32R6 = 0x90000000, + // -mips64r6 code. + E_MIPS_ARCH_64R6 = 0xa0000000, }; enum |