diff options
author | Alan Modra <amodra@gmail.com> | 2006-08-29 01:31:56 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-08-29 01:31:56 +0000 |
commit | 5091343aa7c072312394b238726bc954bbc47f91 (patch) | |
tree | e7b4d6b8c1f7a121be039f6023aeda4ed615d916 /gas | |
parent | 0e7461c15fa5b400a978274c82da50962455bc9c (diff) | |
download | gdb-5091343aa7c072312394b238726bc954bbc47f91.zip gdb-5091343aa7c072312394b238726bc954bbc47f91.tar.gz gdb-5091343aa7c072312394b238726bc954bbc47f91.tar.bz2 |
* ecoff.c (ecoff_directive_val): Fix message typo.
* config/tc-ns32k.c (convert_iif): Likewise.
* config/tc-sh64.c (shmedia_check_limits): Likewise.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-ns32k.c | 2 | ||||
-rw-r--r-- | gas/config/tc-sh64.c | 2 | ||||
-rw-r--r-- | gas/ecoff.c | 4 |
4 files changed, 10 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 45ff886..5eafb1e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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> diff --git a/gas/config/tc-ns32k.c b/gas/config/tc-ns32k.c index a407f71..58e124e 100644 --- a/gas/config/tc-ns32k.c +++ b/gas/config/tc-ns32k.c @@ -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; } } diff --git a/gas/config/tc-sh64.c b/gas/config/tc-sh64.c index 3e9346b..47248fb 100644 --- a/gas/config/tc-sh64.c +++ b/gas/config/tc-sh64.c @@ -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: diff --git a/gas/ecoff.c b/gas/ecoff.c index 45116e8..2f9f71f 100644 --- a/gas/ecoff.c +++ b/gas/ecoff.c @@ -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; } |