* config/tc-mips.c (mips_ip): Make an unsupported instruction a
authorIan Lance Taylor <ian@airs.com>
Tue, 1 Feb 1994 23:10:05 +0000 (23:10 +0000)
committerIan Lance Taylor <ian@airs.com>
Tue, 1 Feb 1994 23:10:05 +0000 (23:10 +0000)
warning, not an error.

gas/ChangeLog
gas/config/tc-mips.c

index 5e166ef..b9b0cc1 100644 (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
index e779ed0..e597b3d 100644 (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;