Committed Binutils 2.19. Backport patch to fix Binutils bug #5523. -------------------------------------------------------------------------------- Index: gas/config/tc-avr.c =================================================================== RCS file: /cvs/src/src/gas/config/tc-avr.c,v retrieving revision 1.48 diff -c -3 -p -r1.48 tc-avr.c *** gas/config/tc-avr.c 16 Nov 2007 17:39:22 -0000 1.48 --- gas/config/tc-avr.c 7 Jan 2008 16:43:30 -0000 *************** avr_ldi_expression (expressionS *exp) *** 618,624 **** break; default: ! as_warn (_("expression dangerous with linker stubs")); } } return reloc_to_return; --- 618,626 ---- break; default: ! /* PR 5523: Do not generate a warning here, ! legitimate code can trigger this case. */ ! break; } } return reloc_to_return;