mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 12:23:31 +08:00
* config/tc-mips.c (mips_ip): Make an unsupported instruction a
warning, not an error.
This commit is contained in:
@ -4,6 +4,9 @@ Tue Feb 1 10:50:17 1994 Steve Chamberlain (sac@jonny.cygnus.com)
|
|||||||
|
|
||||||
Tue Feb 1 12:13:01 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Tue Feb 1 12:13:01 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
|
* config/tc-mips.c (mips_ip): Make an unsupported instruction a
|
||||||
|
warning, not an error.
|
||||||
|
|
||||||
* config/obj-coff.c (dot_text_symbol, dot_data_symbol,
|
* config/obj-coff.c (dot_text_symbol, dot_data_symbol,
|
||||||
dot_bss_symbol): Don't define if BFD_ASSEMBLER.
|
dot_bss_symbol): Don't define if BFD_ASSEMBLER.
|
||||||
(obj_symbol_to_chars): bfd_coff_swap_aux_out now takes more
|
(obj_symbol_to_chars): bfd_coff_swap_aux_out now takes more
|
||||||
|
@ -3783,8 +3783,7 @@ mips_ip (str, ip)
|
|||||||
++insn;
|
++insn;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
insn_error = "ERROR: instruction not supported on this processor";
|
as_warn ("Instruction not supported on this processor");
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ip->insn_mo = insn;
|
ip->insn_mo = insn;
|
||||||
|
Reference in New Issue
Block a user