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> 2011-06-01 DJ Delorie <dj@redhat.com>
* config.bfd: Add bfd_elf32_rx_be_ns_vec. * config.bfd: Add bfd_elf32_rx_be_ns_vec.

View file

@ -1,5 +1,5 @@
/* BFD back-end for Motorola MCore COFF/PE /* 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. Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library. 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) if (info->relocatable)
return TRUE; 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 if ( input_bfd->xvec->byteorder != output_bfd->xvec->byteorder
&& output_bfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN) && 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). /* BFD back-end for Intel 386 COFF files (DJGPP variant with a stub).
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2007, 2009 Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2007, 2009,
Free Software Foundation, Inc. 2011 Free Software Foundation, Inc.
Written by Robert Hoehne. Written by Robert Hoehne.
This file is part of BFD, the Binary File Descriptor library. This file is part of BFD, the Binary File Descriptor library.
@ -102,7 +102,7 @@ static bfd_boolean
#include "coff-i386.c" #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. */ host system. */
#define _H(index) (H_GET_16 (abfd, (header + index * 2))) #define _H(index) (H_GET_16 (abfd, (header + index * 2)))

View file

@ -10233,7 +10233,7 @@ elf32_arm_relocate_section (bfd * output_bfd,
- relocation; - relocation;
addend += msec->output_section->vma + msec->output_offset; 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 statement. */
switch (r_type) switch (r_type)
{ {
@ -15448,7 +15448,7 @@ elf32_arm_merge_private_bfd_data (bfd * ibfd, bfd * obfd)
bfd_boolean flags_compatible = TRUE; bfd_boolean flags_compatible = TRUE;
asection *sec; asection *sec;
/* Check if we have the same endianess. */ /* Check if we have the same endianness. */
if (! _bfd_generic_verify_endian_match (ibfd, obfd)) if (! _bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE; return FALSE;

View file

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

View file

@ -1,6 +1,6 @@
/* Motorola 68HC11/HC12-specific support for 32-bit ELF /* Motorola 68HC11/HC12-specific support for 32-bit ELF
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 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) Contributed by Stephane Carrez (stcarrez@nerim.fr)
This file is part of BFD, the Binary File Descriptor library. 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; flagword new_flags;
bfd_boolean ok = TRUE; 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)) if (!_bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE; return FALSE;

View file

@ -1,6 +1,6 @@
/* Motorola MCore specific support for 32-bit ELF /* Motorola MCore specific support for 32-bit ELF
Copyright 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 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. 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 old_flags;
flagword new_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)) if (! _bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE; 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_flags, new_flags;
flagword old_partial, new_partial; 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) if (_bfd_generic_verify_endian_match (ibfd, obfd) == FALSE)
return FALSE; return FALSE;

View file

@ -1,5 +1,5 @@
/* Morpho Technologies MT specific support for 32-bit ELF /* 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. Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library. 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; flagword old_flags, new_flags;
bfd_boolean ok = TRUE; 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) if (_bfd_generic_verify_endian_match (ibfd, obfd) == FALSE)
return 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)) if (!is_ppc_elf (ibfd) || !is_ppc_elf (obfd))
return TRUE; return TRUE;
/* Check if we have the same endianess. */ /* Check if we have the same endianness. */
if (! _bfd_generic_verify_endian_match (ibfd, obfd)) if (! _bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE; return FALSE;

View file

@ -1,5 +1,5 @@
/* Xtensa-specific support for 32-bit ELF. /* 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. Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library. 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; unsigned out_mach, in_mach;
flagword out_flag, in_flag; 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)) if (!_bfd_generic_verify_endian_match (ibfd, obfd))
return FALSE; return FALSE;

View file

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

View file

@ -1,6 +1,6 @@
/* NLM (NetWare Loadable Module) executable support for BFD. /* NLM (NetWare Loadable Module) executable support for BFD.
Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 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 Written by Fred Fish @ Cygnus Support, using ELF support as the
template. template.
@ -491,7 +491,7 @@ nlm_object_p (bfd *abfd)
NLM_SIGNATURE_SIZE) != 0) NLM_SIGNATURE_SIZE) != 0)
goto got_wrong_format_error; 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 a sane version number after doing byte swapping appropriate for this
XVEC. (Hack alert!) */ XVEC. (Hack alert!) */
if (i_fxdhdrp->version > 0xFFFF) if (i_fxdhdrp->version > 0xFFFF)

View file

@ -223,6 +223,7 @@ elfcode.h
elfcore.h elfcore.h
elflink.c elflink.c
elfn32-mips.c elfn32-mips.c
elfxx-ia64.c
elfxx-mips.c elfxx-mips.c
elfxx-sparc.c elfxx-sparc.c
epoc-pe-arm.c epoc-pe-arm.c
@ -319,6 +320,7 @@ ppcboot.c
reloc.c reloc.c
reloc16.c reloc16.c
riscix.c riscix.c
rs6000-core.c
sco5-core.c sco5-core.c
section.c section.c
simple.c simple.c
@ -345,7 +347,6 @@ vms-alpha.c
vms-lib.c vms-lib.c
vms-misc.c vms-misc.c
vms.h vms.h
xcoff-target.h
xcofflink.c xcofflink.c
xsym.c xsym.c
xsym.h 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. /* vms.c -- BFD back-end for EVAX (openVMS/Alpha) files.
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 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) Initial version written by Klaus Kaempf (kkaempf@rmi.de)
Major rewrite by Adacore. Major rewrite by Adacore.
@ -440,7 +440,7 @@ struct alpha_vms_link_hash_table
{ {
struct bfd_link_hash_table root; struct bfd_link_hash_table root;
/* Vector of shared libaries. */ /* Vector of shared libraries. */
struct vector_type shrlibs; struct vector_type shrlibs;
/* Fixup section. */ /* 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> 2011-06-01 Daniel Jacobowitz <drow@false.org>
* MAINTAINERS: Update my email address. * MAINTAINERS: Update my email address.

View file

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

View file

@ -20,6 +20,8 @@ dlltool.h
dllwrap.c dllwrap.c
dwarf.c dwarf.c
dwarf.h dwarf.h
elfcomm.c
elfcomm.h
elfedit.c elfedit.c
emul_aix.c emul_aix.c
emul_vanilla.c emul_vanilla.c
@ -38,6 +40,8 @@ not-ranlib.c
not-strip.c not-strip.c
objcopy.c objcopy.c
objdump.c objdump.c
objdump.h
od-xcoff.c
prdbg.c prdbg.c
rclex.c rclex.c
rdcoff.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. /* 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. Free Software Foundation, Inc.
Written by Anders Norlander <anorland@hem2.passagen.se>. Written by Anders Norlander <anorland@hem2.passagen.se>.
Rewritten by Kai Tietz, Onevision. Rewritten by Kai Tietz, Onevision.
@ -98,7 +98,7 @@ read_res_file (const char *fn)
off = 0; off = 0;
if (! probe_binary (&wrbfd, flen)) 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); skip_null_resource (&wrbfd, &off, flen);

View file

@ -1,5 +1,5 @@
/* windint.h -- internal header file for windres program. /* 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. Free Software Foundation, Inc.
Written by Kai Tietz, Onevision. 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 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 (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 #endif

View file

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

View file

@ -54,7 +54,7 @@ int verbose = 0;
int target_is_bigendian = 0; int target_is_bigendian = 0;
const char *def_target_arch; const char *def_target_arch;
static void set_endianess (bfd *, const char *); static void set_endianness (bfd *, const char *);
/* An enumeration of format types. */ /* An enumeration of format types. */
@ -1049,7 +1049,7 @@ main (int argc, char **argv)
output_format = format_from_filename (output_filename, 0); output_format = format_from_filename (output_filename, 0);
} }
set_endianess (NULL, target); set_endianness (NULL, target);
/* Read the input file. */ /* Read the input file. */
switch (input_format) switch (input_format)
@ -1098,7 +1098,7 @@ main (int argc, char **argv)
} }
static void static void
set_endianess (bfd *abfd, const char *target) set_endianness (bfd *abfd, const char *target)
{ {
const bfd_target *target_vec; 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, target_vec = bfd_get_target_info (target, abfd, &target_is_bigendian, NULL,
&def_target_arch); &def_target_arch);
if (! target_vec) if (! target_vec)
fatal ("Can't detect target endianess and architecture."); fatal ("Can't detect target endianness and architecture.");
if (! def_target_arch) if (! def_target_arch)
fatal ("Can't detect architecture."); fatal ("Can't detect architecture.");
} }
@ -1127,7 +1127,7 @@ windres_open_as_binary (const char *filename, int rdmode)
} }
void void
set_windres_bfd_endianess (windres_bfd *wrbfd, int is_bigendian) set_windres_bfd_endianness (windres_bfd *wrbfd, int is_bigendian)
{ {
assert (!! wrbfd); assert (!! wrbfd);
switch (WR_KIND(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> 2011-05-31 Paul Brook <paul@codesourcery.com>
* config/tc-arm.c (arm_cpus): Add Cortex-R5. * config/tc-arm.c (arm_cpus): Add Cortex-R5.

View file

@ -461,7 +461,7 @@ parse_args (int * pargc, char *** pargv)
static const struct option std_longopts[] = static const struct option std_longopts[] =
{ {
/* Note: commas are placed at the start of the line rather than /* 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. */ selectively add and remove lines from this list. */
{"alternate", no_argument, NULL, OPTION_ALTERNATE} {"alternate", no_argument, NULL, OPTION_ALTERNATE}
/* The entry for "a" is here to prevent getopt_long_only() from /* 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) /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 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. Written by Ian Lance Taylor, Cygnus Support.
This file is part of GAS, the GNU Assembler. 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) else if (strcmp (arg, "emb") == 0)
ppc_flags |= EF_PPC_EMB; ppc_flags |= EF_PPC_EMB;
/* -mlittle/-mbig set the endianess. */ /* -mlittle/-mbig set the endianness. */
else if (strcmp (arg, "little") == 0 else if (strcmp (arg, "little") == 0
|| strcmp (arg, "little-endian") == 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 static void
s_bad_end (int endr) 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 ? 'r' : 'm',
endr ? ".rept, .irp, or .irpc" : ".macro"); endr ? ".rept, .irp, or .irpc" : ".macro");
demand_empty_rest_of_line (); demand_empty_rest_of_line ();

View file

@ -1,3 +1,8 @@
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> 2011-05-31 Doug Kwan <dougkwan@google.com>
Asier Llano Asier Llano

View file

@ -1,6 +1,6 @@
// dynobj.h -- dynamic object support for gold -*- C++ -*- // 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>. // Written by Ian Lance Taylor <iant@google.com>.
// This file is part of gold. // This file is part of gold.
@ -652,7 +652,7 @@ class Versions
// Contents of --version-script, if passed, or NULL. // Contents of --version-script, if passed, or NULL.
const Version_script_info& version_script_; const Version_script_info& version_script_;
// Whether we need to insert a base version. This is only used for // 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_; 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> template<int size, bool big_endian>
void 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> 2011-05-04 Tristan Gingold <gingold@adacore.com>
* rs6000.h (union external_auxent): Add x_ftype field. * rs6000.h (union external_auxent): Add x_ftype field.

View file

@ -1,6 +1,6 @@
/* COFF information for the Intel i860. /* 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 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 it under the terms of the GNU General Public License as published by
@ -58,7 +58,7 @@ struct external_reloc
#define RELSZ 10 #define RELSZ 10
/* The relocation directory entry types. /* 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. HIGH : The high half of a 32-bit constant.
LOWn : The low half, insn bits 15..(n-1), 2^n-byte aligned. 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. 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> 2011-05-31 Paul Brook <paul@codesourcery.com>
* arm.h (arm_st_branch_type): Add ST_BRANCH_UNKNOWN. * 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_MMA 54 /* Fujitsu Multimedia Accelerator */
#define EM_PCP 55 /* Siemens PCP */ #define EM_PCP 55 /* Siemens PCP */
#define EM_NCPU 56 /* Sony nCPU embedded RISC processor */ #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_STARCORE 58 /* Motorola Star*Core processor */
#define EM_ME16 59 /* Toyota ME16 processor */ #define EM_ME16 59 /* Toyota ME16 processor */
#define EM_ST100 60 /* STMicroelectronics ST100 processor */ #define EM_ST100 60 /* STMicroelectronics ST100 processor */

View file

@ -1,5 +1,5 @@
/* Generic relocation support for BFD. /* 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. 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 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 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 one. Therefore if you intend to use the symbol as a sentinel for
the highest valid macro value you should make sure that the 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: declaration like this:
START_RELOC_NUMBERS (foo) 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> 2011-05-27 Nick Clifton <nickc@redhat.com>
* scripttempl/v850.sc (_heap_start): Provide. * scripttempl/v850.sc (_heap_start): Provide.

View file

@ -1,6 +1,6 @@
/* Parse options for the GNU linker. /* Parse options for the GNU linker.
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 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. Free Software Foundation, Inc.
This file is part of the GNU Binutils. 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"), '\0', NULL, N_("Do not allow unresolved references in object files"),
TWO_DASHES }, TWO_DASHES },
{ {"allow-shlib-undefined", no_argument, NULL, OPTION_ALLOW_SHLIB_UNDEFINED}, { {"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 }, TWO_DASHES },
{ {"no-allow-shlib-undefined", no_argument, NULL, { {"no-allow-shlib-undefined", no_argument, NULL,
OPTION_NO_ALLOW_SHLIB_UNDEFINED}, 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 on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section 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__)} : .data ${RELOCATING+BLOCK(__section_alignment__)} :
{ {

View file

@ -68,7 +68,7 @@ SECTIONS
on fork. This used to be named ".data$nocopy". The linker used on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section 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__)} : .data ${RELOCATING+BLOCK(__section_alignment__)} :
{ {

View file

@ -74,7 +74,7 @@ SECTIONS
on fork. This used to be named ".data$nocopy". The linker used on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section 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__)} : .data ${RELOCATING+BLOCK(__section_alignment__)} :
{ {

View file

@ -90,7 +90,7 @@ SECTIONS
on fork. This used to be named ".data$nocopy". The linker used on fork. This used to be named ".data$nocopy". The linker used
to include this between __data_start__ and __data_end__, but that to include this between __data_start__ and __data_end__, but that
breaks building the cygwin32 dll. Instead, we name the section 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__)} : .data ${RELOCATING+BLOCK(__section_alignment__)} :
{ {

View file

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