2009-02-03  Eric B. Weddington  <eric.weddington@atmel.com>

	* elf32-avr.c (avr_final_link_relocate): Allow avr25 to wraparound.
This commit is contained in:
Eric B. Weddington 2009-02-03 17:21:02 +00:00
parent 8a308ae82b
commit 654c3c9fa5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-02-03 Eric B. Weddington <eric.weddington@atmel.com>
* elf32-avr.c (avr_final_link_relocate): Allow avr25 to wraparound.
2009-02-03 Carlos O'Donell <carlos@codesourcery.com>
* configure.in: AC_SUBST pdfdir.

View File

@ -854,10 +854,11 @@ avr_final_link_relocate (reloc_howto_type * howto,
{
/* Relative distance is too large. */
/* Always apply WRAPAROUND for avr2 and avr4. */
/* Always apply WRAPAROUND for avr2, avr25, and avr4. */
switch (bfd_get_mach (input_bfd))
{
case bfd_mach_avr2:
case bfd_mach_avr25:
case bfd_mach_avr4:
break;