PR gas/5133
authorNick Clifton <nickc@redhat.com>
Mon, 8 Oct 2007 10:14:31 +0000 (10:14 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 8 Oct 2007 10:14:31 +0000 (10:14 +0000)
* config/tc-arm.c (md_apply_fix): Correct error message

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

index 85a080d07e22dbd33a79bbe1332bdd117f476540..56a894114a933192ba0a66c03dd746f1160d0e21 100644 (file)
@@ -1,5 +1,7 @@
 2007-10-08  Nick Clifton  <nickc@redhat.com>
 
+       PR gas/5133
+       * config/tc-arm.c (md_apply_fix): Correct error message
        PR gas/5136
        * config/tc-bfin.c (md_apply_fix): Fix error message.
        PR gas/5135
index 255ab969a1b4f4301c2bb4da40c0d0bc857c67d5..057781e91dca0a70306a288f2652d418d7a6570d 100644 (file)
@@ -18732,7 +18732,7 @@ md_apply_fix (fixS *    fixP,
       newval = md_chars_to_number (buf, THUMB_SIZE);
       if (value < 0 || value > 255)
        as_bad_where (fixP->fx_file, fixP->fx_line,
-                     _("invalid immediate: %ld is too large"),
+                     _("invalid immediate: %ld is out of range"),
                      (long) value);
       newval |= value;
       md_number_to_chars (buf, newval, THUMB_SIZE);
This page took 0.034893 seconds and 4 git commands to generate.