mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
PR 5523
* config/tc-avr.c (avr_ldi_expression): Do not warn about unknown relocs here.
This commit is contained in:
@ -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>
|
2008-05-29 Maxim Kuvyrkov <maxim@codesourcery.com>
|
||||||
|
|
||||||
* config/tc-mips.c (mips_cpu_info_table): Move records for
|
* config/tc-mips.c (mips_cpu_info_table): Move records for
|
||||||
|
@ -622,7 +622,9 @@ avr_ldi_expression (expressionS *exp)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
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;
|
return reloc_to_return;
|
||||||
|
Reference in New Issue
Block a user