* 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 5e166efabcb4e2af015832245a11142d34581a7d..b9b0cc116f4788b87f16a12afa37ba1dfea55b47 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 e779ed0b27359d2c89ad46de886e4ea7a11a9b5f..e597b3d96f8f8fb59d3267a94ba7acd02d23a894 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;