diff options
-rw-r--r-- | gas/ChangeLog | 3 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 5e166ef..b9b0cc1 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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 diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index e779ed0..e597b3d 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -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; |