diff options
author | Nick Clifton <nickc@redhat.com> | 2002-07-31 09:38:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-07-31 09:38:04 +0000 |
commit | 47badb7be66a02661187cf1b3c4d53f70f9e51d3 (patch) | |
tree | 8042e7e4c2a6f2bb9e94e760637598936d86b1b2 /bfd | |
parent | 03223580a722ebafe8c7bb69404b0de4a3211583 (diff) | |
download | fsf-binutils-gdb-47badb7be66a02661187cf1b3c4d53f70f9e51d3.zip fsf-binutils-gdb-47badb7be66a02661187cf1b3c4d53f70f9e51d3.tar.gz fsf-binutils-gdb-47badb7be66a02661187cf1b3c4d53f70f9e51d3.tar.bz2 |
Rename function arguments to avoid shadowing global symbols of the same name.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 9 | ||||
-rw-r--r-- | bfd/bfd-in2.h | 7 | ||||
-rw-r--r-- | bfd/bfd.c | 10 | ||||
-rw-r--r-- | bfd/libbfd.h | 3 | ||||
-rw-r--r-- | bfd/libcoff.h | 2 |
5 files changed, 19 insertions, 12 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 5da8eb5..064883a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,12 @@ +2002-07-31 Nick Clifton <nickc@redhat.com> + + * bfd.c (bfd_alt_mach_code): Rename parameter 'index' to + 'alternative' in order to avoid shadowing global symbol of the + same name. + * bfd-in2.h: Regenerate. + * libbfd.h: Regenerate. + * libcoff.h: Regenerate. + 2002-07-31 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> * Makefile.am: Add n32 ABI support. diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 401b027..da3307d 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1,7 +1,6 @@ /* DO NOT EDIT! -*- buffer-read-only: t -*- This file is automatically - generated from "bfd-in.h", "init.c", "opncls.c", "libbfd.c", - "section.c", "archures.c", "reloc.c", "syms.c", "bfd.c", "archive.c", - "corefile.c", "targets.c" and "format.c". + generated from "bfd-in.h", "init.c", "opncls.c", "libbfd.c" and + "section.c". Run "make headers" in your build bfd/ to regenerate. */ /* Main header file for the bfd library -- portable access to object files. @@ -3663,7 +3662,7 @@ extern bfd_byte *bfd_get_relocated_section_contents boolean, asymbol **)); boolean -bfd_alt_mach_code PARAMS ((bfd *abfd, int index)); +bfd_alt_mach_code PARAMS ((bfd *abfd, int alternative)); /* Extracted from archive.c. */ symindex @@ -1334,27 +1334,27 @@ FUNCTION bfd_alt_mach_code SYNOPSIS - boolean bfd_alt_mach_code(bfd *abfd, int index); + boolean bfd_alt_mach_code(bfd *abfd, int alternative); DESCRIPTION When more than one machine code number is available for the same machine type, this function can be used to switch between - the preferred one (index == 0) and any others. Currently, + the preferred one (alternative == 0) and any others. Currently, only ELF supports this feature, with up to two alternate machine codes. */ boolean -bfd_alt_mach_code (abfd, index) +bfd_alt_mach_code (abfd, alternative) bfd *abfd; - int index; + int alternative; { if (bfd_get_flavour (abfd) == bfd_target_elf_flavour) { int code; - switch (index) + switch (alternative) { case 0: code = get_elf_backend_data (abfd)->elf_machine_code; diff --git a/bfd/libbfd.h b/bfd/libbfd.h index f7c8cc1..ae1e753 100644 --- a/bfd/libbfd.h +++ b/bfd/libbfd.h @@ -1,6 +1,5 @@ /* DO NOT EDIT! -*- buffer-read-only: t -*- This file is automatically - generated from "libbfd-in.h", "init.c", "libbfd.c", "cache.c", - "reloc.c", "archures.c" and "elf.c". + generated from "proto.str chew". Run "make headers" in your build bfd/ to regenerate. */ /* libbfd.h -- Declarations used by bfd library *implementation*. diff --git a/bfd/libcoff.h b/bfd/libcoff.h index 88b0909..e2f6786 100644 --- a/bfd/libcoff.h +++ b/bfd/libcoff.h @@ -1,5 +1,5 @@ /* DO NOT EDIT! -*- buffer-read-only: t -*- This file is automatically - generated from "libcoff-in.h" and "coffcode.h". + generated from "proto.str chew". Run "make headers" in your build bfd/ to regenerate. */ /* BFD COFF object file private structure. |