mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
Fixes a problem exposed by the aarcg64/illegal.s test case - where the assembler was
generating too many error messages. * config/tc-aarch64.c (md_apply_fix): Ignore unused relocs.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2014-06-16 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* config/tc-aarch64.c (md_apply_fix): Ignore unused relocs.
|
||||||
|
|
||||||
2014-06-16 Jiong Wang <jiong.wang@arm.com>
|
2014-06-16 Jiong Wang <jiong.wang@arm.com>
|
||||||
|
|
||||||
* config/tc-aarch64.c (END_OF_INSN): New macro.
|
* config/tc-aarch64.c (END_OF_INSN): New macro.
|
||||||
|
@ -6665,6 +6665,10 @@ md_apply_fix (fixS * fixP, valueT * valP, segT seg)
|
|||||||
case BFD_RELOC_AARCH64_TLSDESC_CALL:
|
case BFD_RELOC_AARCH64_TLSDESC_CALL:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case BFD_RELOC_UNUSED:
|
||||||
|
/* An error will already have been reported. */
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
as_bad_where (fixP->fx_file, fixP->fx_line,
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
||||||
_("unexpected %s fixup"),
|
_("unexpected %s fixup"),
|
||||||
|
Reference in New Issue
Block a user