* config/tc-mips.c (mips_ip): Make an unsupported instruction a

warning, not an error.
This commit is contained in:
Ian Lance Taylor 1994-02-01 23:10:05 +00:00
parent 7bec77b47d
commit 8bbad6fda8
2 changed files with 4 additions and 2 deletions

View File

@ -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)
* 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,
dot_bss_symbol): Don't define if BFD_ASSEMBLER.
(obj_symbol_to_chars): bfd_coff_swap_aux_out now takes more

View File

@ -3783,8 +3783,7 @@ mips_ip (str, ip)
++insn;
continue;
}
insn_error = "ERROR: instruction not supported on this processor";
return;
as_warn ("Instruction not supported on this processor");
}
ip->insn_mo = insn;