PR binutils/941
authorDave Anglin <dave.anglin@nrc.ca>
Thu, 13 Oct 2005 01:06:01 +0000 (01:06 +0000)
committerDave Anglin <dave.anglin@nrc.ca>
Thu, 13 Oct 2005 01:06:01 +0000 (01:06 +0000)
* config/tc-hppa.c (pa_ip): Use as_bad instead of as_fatal when an
unknown opcode is found.

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

index e9c34b4..b625a45 100644 (file)
@@ -1,3 +1,9 @@
+2005-10-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       PR binutils/941
+       * config/tc-hppa.c (pa_ip): Use as_bad instead of as_fatal when an
+       unknown opcode is found.
+
 2005-10-12  Mark Mitchell  <mark@codesourcery.com>
 
        * NEWS: Mention @file.
index 7615eb0..f02e475 100644 (file)
@@ -1622,7 +1622,8 @@ pa_ip (str)
       break;
 
     default:
-      as_fatal (_("Unknown opcode: `%s'"), str);
+      as_bad (_("Unknown opcode: `%s'"), str);
+      return;
     }
 
   /* Look up the opcode in the has table.  */