This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH]: fix some typos in gas strings


Some minor mistakes found when translating gas.

Index: ecoff.c
===================================================================
RCS file: /cvs/src/src/gas/ecoff.c,v
retrieving revision 1.21
diff -u -p -r1.21 ecoff.c
--- ecoff.c	5 May 2005 09:12:44 -0000	1.21
+++ ecoff.c	25 Aug 2006 17:58:16 -0000
@@ -2778,7 +2778,7 @@ ecoff_directive_val (int ignore ATTRIBUT
   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;
     }
Index: config/tc-ns32k.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-ns32k.c,v
retrieving revision 1.26
diff -u -p -r1.26 tc-ns32k.c
--- config/tc-ns32k.c	7 Jun 2006 11:27:58 -0000	1.26
+++ config/tc-ns32k.c	25 Aug 2006 17:58:16 -0000
@@ -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: config/tc-sh64.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-sh64.c,v
retrieving revision 1.21
diff -u -p -r1.21 tc-sh64.c
--- config/tc-sh64.c	7 Jun 2006 11:27:58 -0000	1.21
+++ config/tc-sh64.c	25 Aug 2006 17:58:17 -0000
@@ -1533,7 +1533,7 @@ shmedia_check_limits (offsetT *valp, bfd
 
     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:

-- 
Malcolm Parsons


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]