diff options
author | Nick Clifton <nickc@redhat.com> | 2006-03-03 15:25:31 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-03-03 15:25:31 +0000 |
commit | df406460e9fc46e766dc418f85568062a4912bbe (patch) | |
tree | 8e1d5b1142214b245e59c01ed42f4a53510e7b07 /include/elf | |
parent | b92a518e7392026b969a7547e5b876ea9413f7ff (diff) | |
download | gdb-df406460e9fc46e766dc418f85568062a4912bbe.zip gdb-df406460e9fc46e766dc418f85568062a4912bbe.tar.gz gdb-df406460e9fc46e766dc418f85568062a4912bbe.tar.bz2 |
Add linker relaxation support for the AVR
Diffstat (limited to 'include/elf')
-rw-r--r-- | include/elf/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/avr.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 9012392..2766585 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,8 @@ +2006-03-03 Bjoern Haase <bjoern.m.haase@web.de> + + * avr.h (R_AVR_MS8_LDI,R_AVR_MS8_LDI_NEG): Add. + (EF_AVR_LINKRELAX_PREPARED): Add. + 2006-03-02 Ben Elliston <bje@au.ibm.com> Import from the GCC tree: diff --git a/include/elf/avr.h b/include/elf/avr.h index 68b4d95..f160438 100644 --- a/include/elf/avr.h +++ b/include/elf/avr.h @@ -26,6 +26,10 @@ /* Processor specific flags for the ELF header e_flags field. */ #define EF_AVR_MACH 0xf +/* If bit #7 is set, it is assumed that the elf file uses local symbols + as reference for the relocations so that linker relaxation is possible. */ +#define EF_AVR_LINKRELAX_PREPARED 0x80 + #define E_AVR_MACH_AVR1 1 #define E_AVR_MACH_AVR2 2 #define E_AVR_MACH_AVR3 3 @@ -56,6 +60,8 @@ START_RELOC_NUMBERS (elf_avr_reloc_type) RELOC_NUMBER (R_AVR_LDI, 19) RELOC_NUMBER (R_AVR_6, 20) RELOC_NUMBER (R_AVR_6_ADIW, 21) + RELOC_NUMBER (R_AVR_MS8_LDI, 22) + RELOC_NUMBER (R_AVR_MS8_LDI_NEG, 23) END_RELOC_NUMBERS (R_AVR_max) #endif /* _ELF_AVR_H */ |