diff options
author | Nick Clifton <nickc@redhat.com> | 2012-05-16 14:52:16 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2012-05-16 14:52:16 +0000 |
commit | 53b7c465ed504059aeb570d612fd98fd8565094f (patch) | |
tree | 2214446f8491a149f3e5d141b3f55d3de40e8fda /include | |
parent | bd8afa5eb160b56715b805befe850a5ba2131d28 (diff) | |
download | cygnal-53b7c465ed504059aeb570d612fd98fd8565094f.tar.gz cygnal-53b7c465ed504059aeb570d612fd98fd8565094f.tar.bz2 cygnal-53b7c465ed504059aeb570d612fd98fd8565094f.zip |
PR 13503
* reloc.c: Rename BFD_RELOC_AVR_8_HHI to BFD_RELOC_AVR_8_HLO.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenrate.
* elf32-avr.c (elf_avr_howto_table): Rename R_AVR_8_HHI8 to
R_AVR_8_HLO8.
(avr_reloc_map): Ditto.
* config/tc-avr.c (avr_cons_fix_new): Rename R_AVR_8_HHI8 to
R_AVR_8_HLO8.
(exp_mod_data) Ditto. And replace "hhi8" with "hlo8".
(md_apply_fix): Rename BFD_RELOC_AVR_8_HHI to BFD_RELOC_AVR_8_HLO.
* avr.h (RELOC_NUMBERS): Rename R_AVR_8_HHI8 to R_AVR_8_HLO8.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/avr.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 8e476b7eb..af9563697 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,8 @@ +2012-05-16 Georg-Johann Lay <avr@gjlay.de> + + PR target/13503 + * avr.h (RELOC_NUMBERS): Rename R_AVR_8_HHI8 to R_AVR_8_HLO8. + 2012-05-15 James Murray <jsm@jsm-net.demon.co.uk> * m68hc11.h (R_M68HC12_16B, R_M68HC12_PCREL_9, R_M68HC12_PCREL_10) diff --git a/include/elf/avr.h b/include/elf/avr.h index 6e3b30899..b45d902d2 100644 --- a/include/elf/avr.h +++ b/include/elf/avr.h @@ -80,7 +80,7 @@ START_RELOC_NUMBERS (elf_avr_reloc_type) RELOC_NUMBER (R_AVR_8, 26) RELOC_NUMBER (R_AVR_8_LO8, 27) RELOC_NUMBER (R_AVR_8_HI8, 28) - RELOC_NUMBER (R_AVR_8_HHI8, 29) + RELOC_NUMBER (R_AVR_8_HLO8, 29) END_RELOC_NUMBERS (R_AVR_max) #endif /* _ELF_AVR_H */ |