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,23 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* coff-mcore.c: Fix spelling typo.
* coff-stgo32.c: Likewise.
* elf32-arm.c: Likewise.
* elf32-avr.c: Likewise.
* elf-m68hc1x.c: Likewise.
* elf32-mcore.c: Likewise.
* elf32-mep.c: Likewise.
* elf32-mt.c: Likewise.
* elf32-ppc.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-ppc.c: Likewise.
* elfxx-mips.c: Likewise.
* netbsd.h: Likewise.
* nlmcode.h: Likewise.
* vms-alpha.c: Likewise.
* po/bfd.pot: Regenerate.
* po/SRC-POTFILES.in: Regenerate.
2011-06-01 DJ Delorie <dj@redhat.com>
* config.bfd: Add bfd_elf32_rx_be_ns_vec.

View File

@ -1,5 +1,5 @@
/* BFD back-end for Motorola MCore COFF/PE
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2010
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2010, 2011
Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@ -377,7 +377,7 @@ coff_mcore_relocate_section (output_bfd, info, input_bfd, input_section,
if (info->relocatable)
return TRUE;
/* Check if we have the same endianess */
/* Check if we have the same endianness */
if ( input_bfd->xvec->byteorder != output_bfd->xvec->byteorder
&& output_bfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN)
{

View File

@ -1,6 +1,6 @@
/* BFD back-end for Intel 386 COFF files (DJGPP variant with a stub).
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2007, 2009
Free Software Foundation, Inc.
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2007, 2009,
2011 Free Software Foundation, Inc.
Written by Robert Hoehne.
This file is part of BFD, the Binary File Descriptor library.
@ -102,9 +102,9 @@ static bfd_boolean
#include "coff-i386.c"
/* This macro is used, because I cannot assume the endianess of the
/* This macro is used, because I cannot assume the endianness of the
host system. */
#define _H(index) (H_GET_16 (abfd, (header+index*2)))
#define _H(index) (H_GET_16 (abfd, (header + index * 2)))
/* These bytes are a 2048-byte DOS executable, which loads the COFF
image into memory and then runs it. It is called 'stub'. */

View File

@ -10233,7 +10233,7 @@ elf32_arm_relocate_section (bfd * output_bfd,
- relocation;
addend += msec->output_section->vma + msec->output_offset;
/* Cases here must match those in the preceeding
/* Cases here must match those in the preceding
switch statement. */
switch (r_type)
{
@ -15448,7 +15448,7 @@ elf32_arm_merge_private_bfd_data (bfd * ibfd, bfd * obfd)
bfd_boolean flags_compatible = TRUE;
asection *sec;
/* Check if we have the same endianess. */
/* Check if we have the same endianness. */
if (! _bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE;

View File

@ -1,6 +1,6 @@
/* AVR-specific support for 32-bit ELF
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
2010 Free Software Foundation, Inc.
2010, 2011 Free Software Foundation, Inc.
Contributed by Denis Chertykov <denisc@overta.ru>
This file is part of BFD, the Binary File Descriptor library.
@ -2008,10 +2008,10 @@ elf32_avr_relax_section (bfd *abfd,
if ((0x95 == next_insn_msb) && (0x08 == next_insn_lsb))
{
/* The next insn is a ret. We possibly could delete
this ret. First we need to check for preceeding
this ret. First we need to check for preceding
sbis/sbic/sbrs or cpse "skip" instructions. */
int there_is_preceeding_non_skip_insn = 1;
int there_is_preceding_non_skip_insn = 1;
bfd_vma address_of_ret;
address_of_ret = dot + insn_size;
@ -2023,51 +2023,52 @@ elf32_avr_relax_section (bfd *abfd,
printf ("found jmp / ret sequence at address 0x%x\n",
(int) dot);
/* We have to make sure that there is a preceeding insn. */
/* We have to make sure that there is a preceding insn. */
if (irel->r_offset >= 2)
{
unsigned char preceeding_msb;
unsigned char preceeding_lsb;
preceeding_msb =
unsigned char preceding_msb;
unsigned char preceding_lsb;
preceding_msb =
bfd_get_8 (abfd, contents + irel->r_offset - 1);
preceeding_lsb =
preceding_lsb =
bfd_get_8 (abfd, contents + irel->r_offset - 2);
/* sbic. */
if (0x99 == preceeding_msb)
there_is_preceeding_non_skip_insn = 0;
if (0x99 == preceding_msb)
there_is_preceding_non_skip_insn = 0;
/* sbis. */
if (0x9b == preceeding_msb)
there_is_preceeding_non_skip_insn = 0;
if (0x9b == preceding_msb)
there_is_preceding_non_skip_insn = 0;
/* sbrc */
if ((0xfc == (preceeding_msb & 0xfe)
&& (0x00 == (preceeding_lsb & 0x08))))
there_is_preceeding_non_skip_insn = 0;
if ((0xfc == (preceding_msb & 0xfe)
&& (0x00 == (preceding_lsb & 0x08))))
there_is_preceding_non_skip_insn = 0;
/* sbrs */
if ((0xfe == (preceeding_msb & 0xfe)
&& (0x00 == (preceeding_lsb & 0x08))))
there_is_preceeding_non_skip_insn = 0;
if ((0xfe == (preceding_msb & 0xfe)
&& (0x00 == (preceding_lsb & 0x08))))
there_is_preceding_non_skip_insn = 0;
/* cpse */
if (0x10 == (preceeding_msb & 0xfc))
there_is_preceeding_non_skip_insn = 0;
if (0x10 == (preceding_msb & 0xfc))
there_is_preceding_non_skip_insn = 0;
if (there_is_preceeding_non_skip_insn == 0)
if (there_is_preceding_non_skip_insn == 0)
if (debug_relax)
printf ("preceeding skip insn prevents deletion of"
" ret insn at addr 0x%x in section %s\n",
printf ("preceding skip insn prevents deletion of"
" ret insn at Addy 0x%x in section %s\n",
(int) dot + 2, sec->name);
}
else
{
/* There is no previous instruction. */
there_is_preceeding_non_skip_insn = 0;
there_is_preceding_non_skip_insn = 0;
}
if (there_is_preceeding_non_skip_insn)
if (there_is_preceding_non_skip_insn)
{
/* We now only have to make sure that there is no
local label defined at the address of the ret

View File

@ -1,6 +1,6 @@
/* Motorola 68HC11/HC12-specific support for 32-bit ELF
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
2009, 2010 Free Software Foundation, Inc.
2009, 2010, 2011 Free Software Foundation, Inc.
Contributed by Stephane Carrez (stcarrez@nerim.fr)
This file is part of BFD, the Binary File Descriptor library.
@ -1188,7 +1188,7 @@ _bfd_m68hc11_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
flagword new_flags;
bfd_boolean ok = TRUE;
/* Check if we have the same endianess */
/* Check if we have the same endianness */
if (!_bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE;

View File

@ -1,6 +1,6 @@
/* Motorola MCore specific support for 32-bit ELF
Copyright 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
2007 Free Software Foundation, Inc.
2007, 2011 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@ -55,7 +55,7 @@ mcore_elf_merge_private_bfd_data (bfd * ibfd, bfd * obfd)
flagword old_flags;
flagword new_flags;
/* Check if we have the same endianess. */
/* Check if we have the same endianness. */
if (! _bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE;

View File

@ -606,7 +606,7 @@ mep_elf_merge_private_bfd_data (bfd * ibfd, bfd * obfd)
flagword old_flags, new_flags;
flagword old_partial, new_partial;
/* Check if we have the same endianess. */
/* Check if we have the same endianness. */
if (_bfd_generic_verify_endian_match (ibfd, obfd) == FALSE)
return FALSE;

View File

@ -1,5 +1,5 @@
/* Morpho Technologies MT specific support for 32-bit ELF
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@ -521,7 +521,7 @@ mt_elf_merge_private_bfd_data (bfd * ibfd, bfd * obfd)
flagword old_flags, new_flags;
bfd_boolean ok = TRUE;
/* Check if we have the same endianess. */
/* Check if we have the same endianness. */
if (_bfd_generic_verify_endian_match (ibfd, obfd) == FALSE)
return FALSE;

View File

@ -4145,7 +4145,7 @@ ppc_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
if (!is_ppc_elf (ibfd) || !is_ppc_elf (obfd))
return TRUE;
/* Check if we have the same endianess. */
/* Check if we have the same endianness. */
if (! _bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE;

View File

@ -1,5 +1,5 @@
/* Xtensa-specific support for 32-bit ELF.
Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@ -3466,7 +3466,7 @@ elf_xtensa_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
unsigned out_mach, in_mach;
flagword out_flag, in_flag;
/* Check if we have the same endianess. */
/* Check if we have the same endianness. */
if (!_bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE;

View File

@ -1,6 +1,6 @@
/* BFD back-end definitions used by all NetBSD targets.
Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1998, 2000, 2002,
2005, 2007 Free Software Foundation, Inc.
2005, 2007, 2011 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@ -105,10 +105,10 @@ MY (write_object_contents) (bfd *abfd)
break;
}
/* The NetBSD magic number is always big-endian */
/* The NetBSD magic number is always big-endian. */
#ifndef TARGET_IS_BIG_ENDIAN_P
/* XXX aren't there any macro to change byteorder of a word independent of
the host's or target's endianesses? */
the host's or target's endiannesses? */
execp->a_info
= (execp->a_info & 0xff) << 24 | (execp->a_info & 0xff00) << 8
| (execp->a_info & 0xff0000) >> 8 | (execp->a_info & 0xff000000) >> 24;

View File

@ -1,6 +1,6 @@
/* NLM (NetWare Loadable Module) executable support for BFD.
Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
2005, 2006, 2007 Free Software Foundation, Inc.
2005, 2006, 2007, 2011 Free Software Foundation, Inc.
Written by Fred Fish @ Cygnus Support, using ELF support as the
template.
@ -491,7 +491,7 @@ nlm_object_p (bfd *abfd)
NLM_SIGNATURE_SIZE) != 0)
goto got_wrong_format_error;
/* There's no supported way to discover the endianess of an NLM, so test for
/* There's no supported way to discover the endianness of an NLM, so test for
a sane version number after doing byte swapping appropriate for this
XVEC. (Hack alert!) */
if (i_fxdhdrp->version > 0xFFFF)

View File

@ -223,6 +223,7 @@ elfcode.h
elfcore.h
elflink.c
elfn32-mips.c
elfxx-ia64.c
elfxx-mips.c
elfxx-sparc.c
epoc-pe-arm.c
@ -319,6 +320,7 @@ ppcboot.c
reloc.c
reloc16.c
riscix.c
rs6000-core.c
sco5-core.c
section.c
simple.c
@ -345,7 +347,6 @@ vms-alpha.c
vms-lib.c
vms-misc.c
vms.h
xcoff-target.h
xcofflink.c
xsym.c
xsym.h

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
/* vms.c -- BFD back-end for EVAX (openVMS/Alpha) files.
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Initial version written by Klaus Kaempf (kkaempf@rmi.de)
Major rewrite by Adacore.
@ -440,7 +440,7 @@ struct alpha_vms_link_hash_table
{
struct bfd_link_hash_table root;
/* Vector of shared libaries. */
/* Vector of shared libraries. */
struct vector_type shrlibs;
/* Fixup section. */

View File

@ -1,3 +1,12 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* resres.c: Fix spelling typo.
* windint.h: Likewise.
* windmc.c: Likewise.
* windres.c: Likewise.
* po/POTFILES.in: Regenerate.
* po/binutils.pot: Regenerate.
2011-06-01 Daniel Jacobowitz <drow@false.org>
* MAINTAINERS: Update my email address.

View File

@ -181,6 +181,7 @@ NMEDIT = @NMEDIT@
NO_WERROR = @NO_WERROR@
OBJDUMP = @OBJDUMP@
OBJDUMP_DEFS = @OBJDUMP_DEFS@
OBJDUMP_PRIVATE_OFILES = @OBJDUMP_PRIVATE_OFILES@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@

View File

@ -20,6 +20,8 @@ dlltool.h
dllwrap.c
dwarf.c
dwarf.h
elfcomm.c
elfcomm.h
elfedit.c
emul_aix.c
emul_vanilla.c
@ -38,6 +40,8 @@ not-ranlib.c
not-strip.c
objcopy.c
objdump.c
objdump.h
od-xcoff.c
prdbg.c
rclex.c
rdcoff.c

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
/* resres.c: read_res_file and write_res_file implementation for windres.
Copyright 1998, 1999, 2001, 2002, 2005, 2007, 2008
Copyright 1998, 1999, 2001, 2002, 2005, 2007, 2008, 2011
Free Software Foundation, Inc.
Written by Anders Norlander <anorland@hem2.passagen.se>.
Rewritten by Kai Tietz, Onevision.
@ -98,7 +98,7 @@ read_res_file (const char *fn)
off = 0;
if (! probe_binary (&wrbfd, flen))
set_windres_bfd_endianess (&wrbfd, ! target_is_bigendian);
set_windres_bfd_endianness (&wrbfd, ! target_is_bigendian);
skip_null_resource (&wrbfd, &off, flen);

View File

@ -1,5 +1,5 @@
/* windint.h -- internal header file for windres program.
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007, 2011
Free Software Foundation, Inc.
Written by Kai Tietz, Onevision.
@ -1083,6 +1083,6 @@ extern rc_uint_type windres_get_16 (windres_bfd *, const void *, rc_uint_type);
extern rc_uint_type windres_get_32 (windres_bfd *, const void *, rc_uint_type);
extern void set_windres_bfd (windres_bfd *, bfd *, asection *, rc_uint_type);
extern void set_windres_bfd_endianess (windres_bfd *, int);
extern void set_windres_bfd_endianness (windres_bfd *, int);
#endif

View File

@ -1,5 +1,5 @@
/* windmc.c -- a program to compile Windows message files.
Copyright 2007, 2008, 2009, 2010
Copyright 2007, 2008, 2009, 2010, 2011
Free Software Foundation, Inc.
Written by Kai Tietz, Onevision.
@ -205,7 +205,7 @@ usage (FILE *stream, int status)
-C --codepage_in=<val> Set codepage when reading mc text file\n\
-d --decimal_values Print values to text files decimal\n\
-e --extension=<extension> Set header extension used on export header file\n\
-F --target <target> Specify output target for endianess.\n\
-F --target <target> Specify output target for endianness.\n\
-h --headerdir=<directory> Set the export directory for headers\n\
-u --unicode_in Read input file as UTF16 file\n\
-U --unicode_out Write binary messages as UFT16\n\
@ -231,7 +231,7 @@ usage (FILE *stream, int status)
}
static void
set_endianess (bfd *abfd, const char *target)
set_endianness (bfd *abfd, const char *target)
{
const bfd_target *target_vec;
@ -239,7 +239,7 @@ set_endianess (bfd *abfd, const char *target)
target_vec = bfd_get_target_info (target, abfd, &target_is_bigendian, NULL,
&def_target_arch);
if (! target_vec)
fatal ("Can't detect target endianess and architecture.");
fatal ("Can't detect target endianness and architecture.");
if (! def_target_arch)
fatal ("Can't detect architecture.");
}
@ -1054,7 +1054,7 @@ main (int argc, char **argv)
++optind;
}
set_endianess (NULL, target);
set_endianness (NULL, target);
if (input_filename == NULL)
{

View File

@ -54,7 +54,7 @@ int verbose = 0;
int target_is_bigendian = 0;
const char *def_target_arch;
static void set_endianess (bfd *, const char *);
static void set_endianness (bfd *, const char *);
/* An enumeration of format types. */
@ -1049,7 +1049,7 @@ main (int argc, char **argv)
output_format = format_from_filename (output_filename, 0);
}
set_endianess (NULL, target);
set_endianness (NULL, target);
/* Read the input file. */
switch (input_format)
@ -1098,7 +1098,7 @@ main (int argc, char **argv)
}
static void
set_endianess (bfd *abfd, const char *target)
set_endianness (bfd *abfd, const char *target)
{
const bfd_target *target_vec;
@ -1106,7 +1106,7 @@ set_endianess (bfd *abfd, const char *target)
target_vec = bfd_get_target_info (target, abfd, &target_is_bigendian, NULL,
&def_target_arch);
if (! target_vec)
fatal ("Can't detect target endianess and architecture.");
fatal ("Can't detect target endianness and architecture.");
if (! def_target_arch)
fatal ("Can't detect architecture.");
}
@ -1127,7 +1127,7 @@ windres_open_as_binary (const char *filename, int rdmode)
}
void
set_windres_bfd_endianess (windres_bfd *wrbfd, int is_bigendian)
set_windres_bfd_endianness (windres_bfd *wrbfd, int is_bigendian)
{
assert (!! wrbfd);
switch (WR_KIND(wrbfd))

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 ();

View File

@ -1,8 +1,13 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* dynobj.h: Fix spelling mistake in comment.
* output.cc: Likewise.
2011-05-31 Doug Kwan <dougkwan@google.com>
Asier Llano
PR gold/12826
* arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of
* arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of
arch value that equals to elfcpp::MAX_TAG_CPU_ARCH.
* testsuite/Makefile.am: (MOSTLYCLEANFILES): Clean up. Remove
redundant arm_exidx_test.so.

View File

@ -1,6 +1,6 @@
// dynobj.h -- dynamic object support for gold -*- C++ -*-
// Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
// Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
// Written by Ian Lance Taylor <iant@google.com>.
// This file is part of gold.
@ -652,7 +652,7 @@ class Versions
// Contents of --version-script, if passed, or NULL.
const Version_script_info& version_script_;
// Whether we need to insert a base version. This is only used for
// shared libaries and is cleared when the base version is defined.
// shared libraries and is cleared when the base version is defined.
bool needs_base_version_;
};

View File

@ -479,7 +479,7 @@ Output_file_header::do_write(Output_file* of)
}
}
// Write out the file header with appropriate size and endianess.
// Write out the file header with appropriate size and endianness.
template<int size, bool big_endian>
void

View File

@ -1,3 +1,7 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* i860.h: Fix spelling mistake in comment.
2011-05-04 Tristan Gingold <gingold@adacore.com>
* rs6000.h (union external_auxent): Add x_ftype field.

View File

@ -1,6 +1,6 @@
/* COFF information for the Intel i860.
Copyright 2001, 2003, 2010 Free Software Foundation, Inc.
Copyright 2001, 2003, 2010, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -58,7 +58,7 @@ struct external_reloc
#define RELSZ 10
/* The relocation directory entry types.
PAIR : The low half that follows relates to the preceeding HIGH[ADJ].
PAIR : The low half that follows relates to the preceding HIGH[ADJ].
HIGH : The high half of a 32-bit constant.
LOWn : The low half, insn bits 15..(n-1), 2^n-byte aligned.
SPLITn : The low half, insn bits 20..16 and 10..(n-1), 2^n-byte aligned.

View File

@ -1,3 +1,8 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* common.h: Fix spelling mistake in comment.
* reloc-macros.h: Likewise.
2011-05-31 Paul Brook <paul@codesourcery.com>
* arm.h (arm_st_branch_type): Add ST_BRANCH_UNKNOWN.

View File

@ -159,7 +159,7 @@
#define EM_MMA 54 /* Fujitsu Multimedia Accelerator */
#define EM_PCP 55 /* Siemens PCP */
#define EM_NCPU 56 /* Sony nCPU embedded RISC processor */
#define EM_NDR1 57 /* Denso NDR1 microprocesspr */
#define EM_NDR1 57 /* Denso NDR1 microprocessor */
#define EM_STARCORE 58 /* Motorola Star*Core processor */
#define EM_ME16 59 /* Toyota ME16 processor */
#define EM_ST100 60 /* STMicroelectronics ST100 processor */

View File

@ -1,5 +1,5 @@
/* Generic relocation support for BFD.
Copyright 1998, 1999, 2000, 2003, 2010 Free Software Foundation, Inc.
Copyright 1998, 1999, 2000, 2003, 2010, 2011 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@ -45,10 +45,10 @@
Note: The value of the symbol defined in the END_RELOC_NUMBERS
macro (R_foo_count in the case of the example above) will be
set to the value of the whichever *_RELOC macro preceeds it plus
set to the value of the whichever *_RELOC macro precedes it plus
one. Therefore if you intend to use the symbol as a sentinel for
the highest valid macro value you should make sure that the
preceeding *_RELOC macro is the highest valid number. ie a
preceding *_RELOC macro is the highest valid number. ie a
declaration like this:
START_RELOC_NUMBERS (foo)

View File

@ -1,3 +1,13 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* lexsup.c: Fix spelling mistake in comment.
* scripttempl/epocpe.sc: Likewise.
* scripttempl/i386beos.sc: Likewise.
* scripttempl/mcorepe.sc: Likewise.
* scripttempl/pe.sc: Likewise.
* scripttempl/pep.sc: Likewise.
* po/ld.pot: Regenerate.
2011-05-27 Nick Clifton <nickc@redhat.com>
* scripttempl/v850.sc (_heap_start): Provide.

View File

@ -1,6 +1,6 @@
/* Parse options for the GNU linker.
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011
Free Software Foundation, Inc.
This file is part of the GNU Binutils.
@ -454,7 +454,7 @@ static const struct ld_option ld_options[] =
'\0', NULL, N_("Do not allow unresolved references in object files"),
TWO_DASHES },
{ {"allow-shlib-undefined", no_argument, NULL, OPTION_ALLOW_SHLIB_UNDEFINED},
'\0', NULL, N_("Allow unresolved references in shared libaries"),
'\0', NULL, N_("Allow unresolved references in shared libraries"),
TWO_DASHES },
{ {"no-allow-shlib-undefined", no_argument, NULL,
OPTION_NO_ALLOW_SHLIB_UNDEFINED},

File diff suppressed because it is too large Load Diff

View File

@ -74,7 +74,7 @@ SECTIONS
on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section
".data_cygwin_nocopy" and explictly include it after __data_end__. */
".data_cygwin_nocopy" and explicitly include it after __data_end__. */
.data ${RELOCATING+BLOCK(__section_alignment__)} :
{

View File

@ -68,7 +68,7 @@ SECTIONS
on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section
".data_cygwin_nocopy" and explictly include it after __data_end__. */
".data_cygwin_nocopy" and explicitly include it after __data_end__. */
.data ${RELOCATING+BLOCK(__section_alignment__)} :
{

View File

@ -74,7 +74,7 @@ SECTIONS
on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section
".data_cygwin_nocopy" and explictly include it after __data_end__. */
".data_cygwin_nocopy" and explicitly include it after __data_end__. */
.data ${RELOCATING+BLOCK(__section_alignment__)} :
{

View File

@ -90,7 +90,7 @@ SECTIONS
on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section
".data_cygwin_nocopy" and explictly include it after __data_end__. */
".data_cygwin_nocopy" and explicitly include it after __data_end__. */
.data ${RELOCATING+BLOCK(__section_alignment__)} :
{

View File

@ -91,7 +91,7 @@ SECTIONS
on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section
".data_cygwin_nocopy" and explictly include it after __data_end__. */
".data_cygwin_nocopy" and explicitly include it after __data_end__. */
.data ${RELOCATING+BLOCK(__section_alignment__)} :
{

View File

@ -1,3 +1,8 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* arm-dis.c: Fix spelling mistakes.
* op/opcodes.pot: Regenerate.
2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* s390-opc.c: Replace S390_OPERAND_REG_EVEN with

View File

@ -4702,7 +4702,7 @@ print_insn (bfd_vma pc, struct disassemble_info *info, bfd_boolean little)
if (!found)
{
/* No mapping symbol found at this address. Look backwards
for a preceeding one. */
for a preceding one. */
for (n = start - 1; n >= 0; n--)
{
if (get_map_sym_type (info, n, &type))
@ -4762,7 +4762,7 @@ print_insn (bfd_vma pc, struct disassemble_info *info, bfd_boolean little)
if (!found)
{
/* No mapping symbol found at this address. Look backwards
for a preceeding one. */
for a preceding one. */
for (n = start - 1; n >= 0; n--)
{
if (get_sym_code_type (info, n, &type))
@ -4984,5 +4984,5 @@ the -M switch:\n"));
regnames[i].description);
fprintf (stream, " force-thumb Assume all insns are Thumb insns\n");
fprintf (stream, " no-force-thumb Examine preceeding label to determine an insn's type\n\n");
fprintf (stream, " no-force-thumb Examine preceding label to determine an insn's type\n\n");
}

View File

@ -8,10 +8,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
"POT-Creation-Date: 2010-11-05 10:27+0100\n"
"POT-Creation-Date: 2011-06-02 14:30+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
@ -110,23 +111,23 @@ msgstr ""
msgid "must specify .jd or no nullify suffix"
msgstr ""
#: arm-dis.c:1990
#: arm-dis.c:1994
msgid "<illegal precision>"
msgstr ""
#. XXX - should break 'option' at following delimiter.
#: arm-dis.c:4357
#: arm-dis.c:4376
#, c-format
msgid "Unrecognised register name set: %s\n"
msgstr ""
#. XXX - should break 'option' at following delimiter.
#: arm-dis.c:4365
#: arm-dis.c:4384
#, c-format
msgid "Unrecognised disassembler option: %s\n"
msgstr ""
#: arm-dis.c:4950
#: arm-dis.c:4976
#, c-format
msgid ""
"\n"
@ -134,17 +135,17 @@ msgid ""
"the -M switch:\n"
msgstr ""
#: avr-dis.c:115 avr-dis.c:125
#: avr-dis.c:115 avr-dis.c:135
#, c-format
msgid "undefined"
msgstr ""
#: avr-dis.c:187
#: avr-dis.c:197
#, c-format
msgid "Internal disassembler error"
msgstr ""
#: avr-dis.c:236
#: avr-dis.c:250
#, c-format
msgid "unknown constraint `%c'"
msgstr ""
@ -379,11 +380,11 @@ msgstr ""
msgid "%02x\t\t*unknown*"
msgstr ""
#: i386-dis.c:10671
#: i386-dis.c:10774
msgid "<internal disassembler error>"
msgstr ""
#: i386-dis.c:10968
#: i386-dis.c:11071
#, c-format
msgid ""
"\n"
@ -392,126 +393,126 @@ msgid ""
"with the -M switch (multiple options should be separated by commas):\n"
msgstr ""
#: i386-dis.c:10972
#: i386-dis.c:11075
#, c-format
msgid " x86-64 Disassemble in 64bit mode\n"
msgstr ""
#: i386-dis.c:10973
#: i386-dis.c:11076
#, c-format
msgid " i386 Disassemble in 32bit mode\n"
msgstr ""
#: i386-dis.c:10974
#: i386-dis.c:11077
#, c-format
msgid " i8086 Disassemble in 16bit mode\n"
msgstr ""
#: i386-dis.c:10975
#: i386-dis.c:11078
#, c-format
msgid " att Display instruction in AT&T syntax\n"
msgstr ""
#: i386-dis.c:10976
#: i386-dis.c:11079
#, c-format
msgid " intel Display instruction in Intel syntax\n"
msgstr ""
#: i386-dis.c:10977
#: i386-dis.c:11080
#, c-format
msgid ""
" att-mnemonic\n"
" Display instruction in AT&T mnemonic\n"
msgstr ""
#: i386-dis.c:10979
#: i386-dis.c:11082
#, c-format
msgid ""
" intel-mnemonic\n"
" Display instruction in Intel mnemonic\n"
msgstr ""
#: i386-dis.c:10981
#: i386-dis.c:11084
#, c-format
msgid " addr64 Assume 64bit address size\n"
msgstr ""
#: i386-dis.c:10982
#: i386-dis.c:11085
#, c-format
msgid " addr32 Assume 32bit address size\n"
msgstr ""
#: i386-dis.c:10983
#: i386-dis.c:11086
#, c-format
msgid " addr16 Assume 16bit address size\n"
msgstr ""
#: i386-dis.c:10984
#: i386-dis.c:11087
#, c-format
msgid " data32 Assume 32bit data size\n"
msgstr ""
#: i386-dis.c:10985
#: i386-dis.c:11088
#, c-format
msgid " data16 Assume 16bit data size\n"
msgstr ""
#: i386-dis.c:10986
#: i386-dis.c:11089
#, c-format
msgid " suffix Always display instruction suffix in AT&T syntax\n"
msgstr ""
#: i386-gen.c:459 ia64-gen.c:307
#: i386-gen.c:467 ia64-gen.c:307
#, c-format
msgid "%s: Error: "
msgstr ""
#: i386-gen.c:591
#: i386-gen.c:599
#, c-format
msgid "%s: %d: Unknown bitfield: %s\n"
msgstr ""
#: i386-gen.c:593
#: i386-gen.c:601
#, c-format
msgid "Unknown bitfield: %s\n"
msgstr ""
#: i386-gen.c:649
#: i386-gen.c:657
#, c-format
msgid "%s: %d: Missing `)' in bitfield: %s\n"
msgstr ""
#: i386-gen.c:914
#: i386-gen.c:922
#, c-format
msgid "can't find i386-opc.tbl for reading, errno = %s\n"
msgstr ""
#: i386-gen.c:1045
#: i386-gen.c:1053
#, c-format
msgid "can't find i386-reg.tbl for reading, errno = %s\n"
msgstr ""
#: i386-gen.c:1122
#: i386-gen.c:1130
#, c-format
msgid "can't create i386-init.h, errno = %s\n"
msgstr ""
#: i386-gen.c:1211 ia64-gen.c:2820
#: i386-gen.c:1219 ia64-gen.c:2820
#, c-format
msgid "unable to change directory to \"%s\", errno = %s\n"
msgstr ""
#: i386-gen.c:1218
#: i386-gen.c:1226
#, c-format
msgid "%d unused bits in i386_cpu_flags.\n"
msgstr ""
#: i386-gen.c:1225
#: i386-gen.c:1233
#, c-format
msgid "%d unused bits in i386_operand_type.\n"
msgstr ""
#: i386-gen.c:1239
#: i386-gen.c:1247
#, c-format
msgid "can't create i386-tbl.h, errno = %s\n"
msgstr ""
@ -829,26 +830,26 @@ msgstr ""
msgid "Value is not aligned enough"
msgstr ""
#: mips-dis.c:841
#: mips-dis.c:845
msgid "# internal error, incomplete extension sequence (+)"
msgstr ""
#: mips-dis.c:975
#: mips-dis.c:1011
#, c-format
msgid "# internal error, undefined extension sequence (+%c)"
msgstr ""
#: mips-dis.c:1335
#: mips-dis.c:1371
#, c-format
msgid "# internal error, undefined modifier (%c)"
msgstr ""
#: mips-dis.c:1939
#: mips-dis.c:1975
#, c-format
msgid "# internal disassembler error, unrecognised modifier (%c)"
msgstr ""
#: mips-dis.c:2177
#: mips-dis.c:2213
#, c-format
msgid ""
"\n"
@ -856,7 +857,7 @@ msgid ""
"with the -M switch (multiple options should be separated by commas):\n"
msgstr ""
#: mips-dis.c:2181
#: mips-dis.c:2217
#, c-format
msgid ""
"\n"
@ -864,7 +865,7 @@ msgid ""
" Default: based on binary being disassembled.\n"
msgstr ""
#: mips-dis.c:2185
#: mips-dis.c:2221
#, c-format
msgid ""
"\n"
@ -872,7 +873,7 @@ msgid ""
" Default: numeric.\n"
msgstr ""
#: mips-dis.c:2189
#: mips-dis.c:2225
#, c-format
msgid ""
"\n"
@ -881,7 +882,7 @@ msgid ""
" Default: based on binary being disassembled.\n"
msgstr ""
#: mips-dis.c:2194
#: mips-dis.c:2230
#, c-format
msgid ""
"\n"
@ -890,7 +891,7 @@ msgid ""
" Default: based on binary being disassembled.\n"
msgstr ""
#: mips-dis.c:2199
#: mips-dis.c:2235
#, c-format
msgid ""
"\n"
@ -898,7 +899,7 @@ msgid ""
" specified ABI.\n"
msgstr ""
#: mips-dis.c:2203
#: mips-dis.c:2239
#, c-format
msgid ""
"\n"
@ -906,7 +907,7 @@ msgid ""
" specified architecture.\n"
msgstr ""
#: mips-dis.c:2207
#: mips-dis.c:2243
#, c-format
msgid ""
"\n"
@ -914,12 +915,12 @@ msgid ""
" "
msgstr ""
#: mips-dis.c:2212 mips-dis.c:2220 mips-dis.c:2222
#: mips-dis.c:2248 mips-dis.c:2256 mips-dis.c:2258
#, c-format
msgid "\n"
msgstr ""
#: mips-dis.c:2214
#: mips-dis.c:2250
#, c-format
msgid ""
"\n"
@ -994,43 +995,43 @@ msgid ""
"the -M switch:\n"
msgstr ""
#: ppc-opc.c:878 ppc-opc.c:906
#: ppc-opc.c:879 ppc-opc.c:907
msgid "invalid conditional option"
msgstr ""
#: ppc-opc.c:908
#: ppc-opc.c:909
msgid "attempt to set y bit when using + or - modifier"
msgstr ""
#: ppc-opc.c:940
#: ppc-opc.c:941
msgid "invalid mask field"
msgstr ""
#: ppc-opc.c:966
#: ppc-opc.c:967
msgid "ignoring invalid mfcr mask"
msgstr ""
#: ppc-opc.c:1016 ppc-opc.c:1051
#: ppc-opc.c:1017 ppc-opc.c:1052
msgid "illegal bitmask"
msgstr ""
#: ppc-opc.c:1171
#: ppc-opc.c:1172
msgid "index register in load range"
msgstr ""
#: ppc-opc.c:1187
#: ppc-opc.c:1188
msgid "source and target register operands must be different"
msgstr ""
#: ppc-opc.c:1202
#: ppc-opc.c:1203
msgid "invalid register operand when updating"
msgstr ""
#: ppc-opc.c:1281
#: ppc-opc.c:1282
msgid "invalid sprg number"
msgstr ""
#: ppc-opc.c:1451
#: ppc-opc.c:1452
msgid "invalid constant"
msgstr ""
@ -1077,12 +1078,12 @@ msgstr ""
msgid "unknown"
msgstr ""
#: v850-dis.c:365
#: v850-dis.c:372
#, c-format
msgid "unknown operand shift: %x\n"
msgstr ""
#: v850-dis.c:377
#: v850-dis.c:384
#, c-format
msgid "unknown reg: %d\n"
msgstr ""