* ecoff.c (ecoff_directive_val): Fix message typo.
authorAlan Modra <amodra@gmail.com>
Tue, 29 Aug 2006 01:31:56 +0000 (01:31 +0000)
committerAlan Modra <amodra@gmail.com>
Tue, 29 Aug 2006 01:31:56 +0000 (01:31 +0000)
* config/tc-ns32k.c (convert_iif): Likewise.
* config/tc-sh64.c (shmedia_check_limits): Likewise.

gas/ChangeLog
gas/config/tc-ns32k.c
gas/config/tc-sh64.c
gas/ecoff.c

index 45ff8860b67de220bb5cf18a837f3fa7a3397fa6..5eafb1e55c2d3d6479b4484a2284ffd75c4912f8 100644 (file)
@@ -1,3 +1,9 @@
+2006-08-29  Malcolm Parsons  <malcolm.parsons@gmail.com>
+
+       * ecoff.c (ecoff_directive_val): Fix message typo.
+       * config/tc-ns32k.c (convert_iif): Likewise.
+       * config/tc-sh64.c (shmedia_check_limits): Likewise.
+
 2006-08-25  Sterling Augustine  <sterling@tensilica.com>
            Bob Wilson  <bob.wilson@acm.org>
 
index a407f715b6616a0e85d7fa7eb53a1e7fc8d2c1dd..58e124e76e01d7ae4c133a694207dfe866eb8ddc 100644 (file)
@@ -1861,7 +1861,7 @@ convert_iif (void)
                              size = 4;
                            else
                              {
-                               as_bad (_("Displacement to large for :d"));
+                               as_bad (_("Displacement too large for :d"));
                                size = 4;
                              }
                          }
index 3e9346bb5150b53f110562d1c405e9857bc9a70c..47248fb9d2ce2da320dac993eb5fc544829bb310 100644 (file)
@@ -1533,7 +1533,7 @@ shmedia_check_limits (offsetT *valp, bfd_reloc_code_real_type reloc,
 
     case BFD_RELOC_SH_IMMU16:
       if (val < 0 || val > (1 << 16) - 1)
-       msg = _("invalid operand, not an 16-bit unsigned value: %d");
+       msg = _("invalid operand, not a 16-bit unsigned value: %d");
       break;
 
     case BFD_RELOC_SH_PT_16:
index 45116e86db0d35f5ce5e14b1cb1fde58e4f52ba5..2f9f71f8ebe69e5fbb793ed43204c88eafc04eba 100644 (file)
@@ -1,6 +1,6 @@
 /* ECOFF debugging support.
    Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-   2003, 2004, 2005
+   2003, 2004, 2005, 2006
    Free Software Foundation, Inc.
    Contributed by Cygnus Support.
    This file was put together by Ian Lance Taylor <ian@cygnus.com>.  A
@@ -2778,7 +2778,7 @@ ecoff_directive_val (int ignore ATTRIBUTE_UNUSED)
   expression (&exp);
   if (exp.X_op != O_constant && exp.X_op != O_symbol)
     {
-      as_bad (_(".val expression is too copmlex"));
+      as_bad (_(".val expression is too complex"));
       demand_empty_rest_of_line ();
       return;
     }