diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2006-04-06 18:52:46 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2006-04-06 18:52:46 +0000 |
commit | fbbc375958301d22e296eccef0ff31b36c75d9ca (patch) | |
tree | 5978463f47363265740b2ab8986a62a69ad9faa8 /ld/ldmain.c | |
parent | 7f198e01c2e54f523e8f27c8b485a81643801a0b (diff) | |
download | gdb-fbbc375958301d22e296eccef0ff31b36c75d9ca.zip gdb-fbbc375958301d22e296eccef0ff31b36c75d9ca.tar.gz gdb-fbbc375958301d22e296eccef0ff31b36c75d9ca.tar.bz2 |
bfd/
2006-04-06 H.J. Lu <hongjiu.lu@intel.com>
* elfxx-ia64.c (elfNN_ia64_relax_section): Skip unneeded passes
with the skip_relax_pass_0 and skip_relax_pass_1 bits in the
section structure.
include/
2006-04-06 H.J. Lu <hongjiu.lu@intel.com>
* bfdlink.h (bfd_link_info): Replace need_relax_finalize with
relax_pass.
ld/
2006-04-06 H.J. Lu <hongjiu.lu@intel.com>
* emultempl/ia64elf.em: Set link_info.relax_pass to 2. Remove
link_info.need_relax_finalize.
* ldlang.c (relax_sections): New.
(lang_process): Use. Call relax_sections link_info.relax_pass
times.
* ldmain.c (main): Set link_info.relax_pass to 1. Remove
link_info.need_relax_finalize.
Diffstat (limited to 'ld/ldmain.c')
-rw-r--r-- | ld/ldmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/ldmain.c b/ld/ldmain.c index 3093bdb..db87a40 100644 --- a/ld/ldmain.c +++ b/ld/ldmain.c @@ -313,7 +313,7 @@ main (int argc, char **argv) link_info.spare_dynamic_tags = 5; link_info.flags = 0; link_info.flags_1 = 0; - link_info.need_relax_finalize = FALSE; + link_info.relax_pass = 1; link_info.warn_shared_textrel = FALSE; link_info.gc_sections = FALSE; |