diff options
author | Alan Modra <amodra@gmail.com> | 2007-05-31 15:04:52 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-05-31 15:04:52 +0000 |
commit | a9a4c53eccf5a5e8ed2d6edb75054ad7ff7990fc (patch) | |
tree | bfdf255e2390aab1cfecbda9d7beb4f2ea053af9 /include/bfdlink.h | |
parent | 91568d083aac1900ec23ac9432376ab5b704e8ac (diff) | |
download | gdb-a9a4c53eccf5a5e8ed2d6edb75054ad7ff7990fc.zip gdb-a9a4c53eccf5a5e8ed2d6edb75054ad7ff7990fc.tar.gz gdb-a9a4c53eccf5a5e8ed2d6edb75054ad7ff7990fc.tar.bz2 |
include/
* bfdlink.h (struct bfd_link_info): Add input_bfds_tail.
bfd/
* simple.c (bfd_simple_get_relocated_section_content): Init
input_bfds_tail.
ld/
* ldlang.c (ldlang_add_file): Use input_bfds_tail.
* ldmain.c (main): Init input_bfds_tail. Sort link_info
initialization.
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r-- | include/bfdlink.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bfdlink.h b/include/bfdlink.h index 82fdc5c..a373225 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -395,6 +395,7 @@ struct bfd_link_info /* The list of input BFD's involved in the link. These are chained together via the link_next field. */ bfd *input_bfds; + bfd **input_bfds_tail; /* If a symbol should be created for each input BFD, this is section where those symbols should be placed. It must be a section in |