diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-03-01 19:38:01 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-03-01 19:38:01 +0000 |
commit | c086cbc69a2c63671f2a684e5ff8f166bc5d5de2 (patch) | |
tree | 8fd14a98f7456148454ff03bec2222b7f5b2268a /include/bfdlink.h | |
parent | b6f29aaaeabac9302832b971c78a30ae5313c1d5 (diff) | |
download | ppe42-binutils-c086cbc69a2c63671f2a684e5ff8f166bc5d5de2.tar.gz ppe42-binutils-c086cbc69a2c63671f2a684e5ff8f166bc5d5de2.zip |
2000-03-01 H.J. Lu <hjl@gnu.org>
* bfdlink.h (bfd_link_callbacks): Add a boolean arg to
the undefined_symbol callback.
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r-- | include/bfdlink.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/bfdlink.h b/include/bfdlink.h index f7f113c37e..bb827a35f0 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -329,10 +329,13 @@ 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. In some cases SECTION may be NULL. */ + reference is made. FATAL indicates whether an undefined symbol is + a fatal error or not. In some cases SECTION may be NULL. */ boolean (*undefined_symbol) PARAMS ((struct bfd_link_info *, const char *name, bfd *abfd, - asection *section, bfd_vma address)); + asection *section, + bfd_vma address, + boolean fatal)); /* A function which is called when a reloc overflow occurs. NAME is the name of the symbol or section the reloc is against, RELOC_NAME is the name of the relocation, and ADDEND is any |