From: Alan Modra Date: Tue, 29 Sep 2009 02:24:56 +0000 (+0000) Subject: * ldlang.c (lang_size_sections_1): Allow scripts to specify a X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cafed8af5abeaec7b6b7ab7e76a757b90e1448b3;p=binutils-gdb.git * ldlang.c (lang_size_sections_1): Allow scripts to specify a non-zero vma even when relocatable. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index fe5b6265a72..6658a7d70c5 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2009-09-29 Alan Modra + + * ldlang.c (lang_size_sections_1): Allow scripts to specify a + non-zero vma even when relocatable. + 2009-09-28 Alan Modra * scripttempl/elf32cr16.sc: Emit empty script for ld -r and ld -Ur. @@ -85,7 +90,7 @@ 2009-09-13 Alan Modra - PR ld/6766 + PR ld/6766 * lexsup.c (parse_args <-e>): Revert 2009-03-18 change. * ldemul.c (after_parse_default): Add entry symbol as undef. * emultempl/alphaelf.em (alpha_after_parse): Call after_parse_default. @@ -385,7 +390,7 @@ 2009-08-04 Alan Modra - PR 10474 + PR 10474 * emultempl/ppc32elf.em (ppc_before_allocation): Test rawsize, not size, after lang_reset_memory_regions. @@ -706,7 +711,7 @@ 2009-04-25 Alan Modra - PR 10061 + PR 10061 * genscripts.sh: Don't pass $EMULATION_NAME as $CUSTOMIZER_SCRIPT param. diff --git a/ld/ldlang.c b/ld/ldlang.c index 9e956b384fa..83713707b13 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -4665,7 +4665,7 @@ lang_size_sections_1 lang_memory_region_type *r; os = &s->output_section_statement; - if (link_info.relocatable) + if (os->addr_tree == NULL && link_info.relocatable) os->addr_tree = exp_intop (0); if (os->addr_tree != NULL) {