PR 11297: Add support for 8-bit relocations to the AVR toolchain.
This commit is contained in:
parent
7414c24a77
commit
ed64b7583c
|
@ -1,3 +1,8 @@
|
||||||
|
2010-02-23 Andrew Zabolotny <anpaza@mail.ru>
|
||||||
|
|
||||||
|
PR binutils/11297
|
||||||
|
* avr.h: (R_AVR_8): New relocation number.
|
||||||
|
|
||||||
2010-02-18 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
2010-02-18 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
||||||
|
|
||||||
* arm.h (Tag_MPextension_use): Renumber.
|
* arm.h (Tag_MPextension_use): Renumber.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* AVR ELF support for BFD.
|
/* AVR ELF support for BFD.
|
||||||
Copyright 1999, 2000, 2004, 2006 Free Software Foundation, Inc.
|
Copyright 1999, 2000, 2004, 2006, 2010 Free Software Foundation, Inc.
|
||||||
Contributed by Denis Chertykov <denisc@overta.ru>
|
Contributed by Denis Chertykov <denisc@overta.ru>
|
||||||
|
|
||||||
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
||||||
|
@ -69,6 +69,7 @@ START_RELOC_NUMBERS (elf_avr_reloc_type)
|
||||||
RELOC_NUMBER (R_AVR_MS8_LDI_NEG, 23)
|
RELOC_NUMBER (R_AVR_MS8_LDI_NEG, 23)
|
||||||
RELOC_NUMBER (R_AVR_LO8_LDI_GS, 24)
|
RELOC_NUMBER (R_AVR_LO8_LDI_GS, 24)
|
||||||
RELOC_NUMBER (R_AVR_HI8_LDI_GS, 25)
|
RELOC_NUMBER (R_AVR_HI8_LDI_GS, 25)
|
||||||
|
RELOC_NUMBER (R_AVR_8, 26)
|
||||||
END_RELOC_NUMBERS (R_AVR_max)
|
END_RELOC_NUMBERS (R_AVR_max)
|
||||||
|
|
||||||
#endif /* _ELF_AVR_H */
|
#endif /* _ELF_AVR_H */
|
||||||
|
|
Loading…
Reference in New Issue