diff options
author | Nick Clifton <nickc@redhat.com> | 2012-05-01 16:07:36 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2012-05-01 16:07:36 +0000 |
commit | 57402f1e314550ef28cc63b16d5ac69270c02984 (patch) | |
tree | 599ad89be1f5b3d47071600d5cd7e9c922e69535 /bfd/elf32-arm.c | |
parent | fd8205284be4f6b36dd6f9bb897ead99bf87fe73 (diff) | |
download | gdb-57402f1e314550ef28cc63b16d5ac69270c02984.zip gdb-57402f1e314550ef28cc63b16d5ac69270c02984.tar.gz gdb-57402f1e314550ef28cc63b16d5ac69270c02984.tar.bz2 |
PR binutils/13121
Rename 'finfo' to 'flaginfo' to avoid conflicts with
AIX system headers.
Diffstat (limited to 'bfd/elf32-arm.c')
-rw-r--r-- | bfd/elf32-arm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index 9560906..f5bad39 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -14440,7 +14440,7 @@ get_arm_elf_section_data (asection * sec) typedef struct { - void *finfo; + void *flaginfo; struct bfd_link_info *info; asection *sec; int sec_shndx; @@ -14475,7 +14475,7 @@ elf32_arm_output_map_sym (output_arch_syminfo *osi, sym.st_shndx = osi->sec_shndx; sym.st_target_internal = 0; elf32_arm_section_map_add (osi->sec, names[type][1], offset); - return osi->func (osi->finfo, names[type], &sym, osi->sec, NULL) == 1; + return osi->func (osi->flaginfo, names[type], &sym, osi->sec, NULL) == 1; } /* Output mapping symbols for the PLT entry described by ROOT_PLT and ARM_PLT. @@ -14602,7 +14602,7 @@ elf32_arm_output_stub_sym (output_arch_syminfo *osi, const char *name, sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FUNC); sym.st_shndx = osi->sec_shndx; sym.st_target_internal = 0; - return osi->func (osi->finfo, name, &sym, osi->sec, NULL) == 1; + return osi->func (osi->flaginfo, name, &sym, osi->sec, NULL) == 1; } static bfd_boolean @@ -14714,7 +14714,7 @@ arm_map_one_stub (struct bfd_hash_entry * gen_entry, static bfd_boolean elf32_arm_output_arch_local_syms (bfd *output_bfd, struct bfd_link_info *info, - void *finfo, + void *flaginfo, int (*func) (void *, const char *, Elf_Internal_Sym *, asection *, @@ -14732,7 +14732,7 @@ elf32_arm_output_arch_local_syms (bfd *output_bfd, check_use_blx (htab); - osi.finfo = finfo; + osi.flaginfo = flaginfo; osi.info = info; osi.func = func; |