* config/tc-avr.c (avr_ldi_expression): Do not warn about unknown
        relocs here.
This commit is contained in:
Nick Clifton 2008-05-30 14:20:27 +00:00
parent c2760c3517
commit 0a903babef
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-05-30 Nick Clifton <nickc@redhat.com>
PR 5523
* config/tc-avr.c (avr_ldi_expression): Do not warn about unknown
relocs here.
2008-05-29 Maxim Kuvyrkov <maxim@codesourcery.com>
* config/tc-mips.c (mips_cpu_info_table): Move records for

View File

@ -622,7 +622,9 @@ avr_ldi_expression (expressionS *exp)
break;
default:
as_warn (_("expression dangerous with linker stubs"));
/* PR 5523: Do not generate a warning here,
legitimate code can trigger this case. */
break;
}
}
return reloc_to_return;