Fix spelling mistakes.

This commit is contained in:
Nick Clifton
2011-06-02 13:43:24 +00:00
parent 4c422395e6
commit cc643b88f1
48 changed files with 6145 additions and 4684 deletions

View File

@@ -1,3 +1,10 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* as.c: Fix spelling typo.
* read.c: Likewise.
* config/tc-ppc.c: Likewise.
* po/gas.pit: Regenerate.
2011-05-31 Paul Brook <paul@codesourcery.com>
* config/tc-arm.c (arm_cpus): Add Cortex-R5.
@@ -20,7 +27,7 @@
* config/tc-arm.c (fix_new_arm): Create an absolute symbol for
pc-relative fixes to constants.
* config/tc-arm.h (TC_FORCE_RELOCATATION_ABS): Define.
2011-05-27 Nick Clifton <nickc@redhat.com>
* config/tc-s390.c (md_begin): Remove unused variable dup_insn.

View File

@@ -461,7 +461,7 @@ parse_args (int * pargc, char *** pargv)
static const struct option std_longopts[] =
{
/* Note: commas are placed at the start of the line rather than
the end of the preceeding line so that it is simpler to
the end of the preceding line so that it is simpler to
selectively add and remove lines from this list. */
{"alternate", no_argument, NULL, OPTION_ALTERNATE}
/* The entry for "a" is here to prevent getopt_long_only() from

View File

@@ -1,6 +1,7 @@
/* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support.
This file is part of GAS, the GNU Assembler.
@@ -1153,7 +1154,7 @@ md_parse_option (int c, char *arg)
else if (strcmp (arg, "emb") == 0)
ppc_flags |= EF_PPC_EMB;
/* -mlittle/-mbig set the endianess. */
/* -mlittle/-mbig set the endianness. */
else if (strcmp (arg, "little") == 0
|| strcmp (arg, "little-endian") == 0)
{

File diff suppressed because it is too large Load Diff

View File

@@ -2935,7 +2935,7 @@ s_purgem (int ignore ATTRIBUTE_UNUSED)
static void
s_bad_end (int endr)
{
as_warn (_(".end%c encountered without preceeding %s"),
as_warn (_(".end%c encountered without preceding %s"),
endr ? 'r' : 'm',
endr ? ".rept, .irp, or .irpc" : ".macro");
demand_empty_rest_of_line ();