From 8bbad6fda84f1f1c71e51982d367e040c108046e Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 1 Feb 1994 23:10:05 +0000 Subject: [PATCH] * config/tc-mips.c (mips_ip): Make an unsupported instruction a warning, not an error. --- gas/ChangeLog | 3 +++ gas/config/tc-mips.c | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 5e166efabcb..b9b0cc116f4 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 e779ed0b273..e597b3d96f8 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; -- 2.30.2