diff options
author | Doug Kwan <dougkwan@google.com> | 2009-12-15 02:02:39 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@google.com> | 2009-12-15 02:02:39 +0000 |
commit | e7f8eadb7897a84b7e76370aee406ea53a88cec6 (patch) | |
tree | c798402f3070becd20ffee8b831a96e863146cc5 /include/bfdlink.h | |
parent | 4c807e72625c17af7cd55814b4dd02a94c5179ab (diff) | |
download | gdb-e7f8eadb7897a84b7e76370aee406ea53a88cec6.zip gdb-e7f8eadb7897a84b7e76370aee406ea53a88cec6.tar.gz gdb-e7f8eadb7897a84b7e76370aee406ea53a88cec6.tar.bz2 |
2009-12-14 Doug Kwan <dougkwan@google.com>
bfd/ChangeLog:
* opncls.c (bfd_opnr_iovec): Rename parameters to avoid shawdowed
variable warnings.
* bfd-in2.h: Regnenerate.
include/ChangeLog:
* bfdlink.h (struct bfd_link_callbacks): Rename function parameters
to avoid shadowed variable warnings.
* dis-asm.h (struct disassemble_info): Ditto.
(disassemble_init_for_target): Ditto.
(init_disassemble_info): Ditto.
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r-- | include/bfdlink.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bfdlink.h b/include/bfdlink.h index 4f63af9..af3c5c4 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -540,11 +540,11 @@ struct bfd_link_callbacks /* A function which is called when a relocation is attempted against an undefined symbol. NAME is the symbol which is undefined. ABFD, SECTION and ADDRESS identify the location from which the - reference is made. FATAL indicates whether an undefined symbol is + reference is made. IS_FATAL indicates whether an undefined symbol is a fatal error or not. In some cases SECTION may be NULL. */ bfd_boolean (*undefined_symbol) (struct bfd_link_info *, const char *name, bfd *abfd, - asection *section, bfd_vma address, bfd_boolean fatal); + asection *section, bfd_vma address, bfd_boolean is_fatal); /* A function which is called when a reloc overflow occurs. ENTRY is the link hash table entry for the symbol the reloc is against. NAME is the name of the local symbol or section the reloc is |