* config/tc-mips.c (check_absolute_expr): Change warning to
authorIan Lance Taylor <ian@airs.com>
Mon, 14 Jul 1997 03:45:16 +0000 (03:45 +0000)
committerIan Lance Taylor <ian@airs.com>
Mon, 14 Jul 1997 03:45:16 +0000 (03:45 +0000)
error.
PR 12849.

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

index 2060e9c9ed77355538864df88249521458452ad1..a55b34fd5813e6671044afa6429b2920f918de0b 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul 13 20:43:46 1997  Ian Lance Taylor  <ian@cygnus.com>
+
+       * config/tc-mips.c (check_absolute_expr): Change warning to
+       error.
+
 Fri Jul 11 10:18:47 1997  Jeffrey A Law  (law@cygnus.com)
 
        * config/tc-mips.c (macro_build): Refine code to check if an
index 5a71412c14d41524880b678d376f0f3d86a90dea..8b4c6b982ad7a0ab088892c41a4982b2172a18a0 100644 (file)
@@ -2760,7 +2760,7 @@ check_absolute_expr (ip, ex)
   if (ex->X_op == O_big)
     as_bad ("unsupported large constant");
   else if (ex->X_op != O_constant)
-    as_warn ("Instruction %s requires absolute expression", ip->insn_mo->name);
+    as_bad ("Instruction %s requires absolute expression", ip->insn_mo->name);
 }
 
 /* Count the leading zeroes by performing a binary chop. This is a
This page took 0.045775 seconds and 4 git commands to generate.