diff options
author | Alan Modra <amodra@gmail.com> | 2001-01-23 11:48:28 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-01-23 11:48:28 +0000 |
commit | c1eb148815418b80717c0abcba633c6cfc098133 (patch) | |
tree | acce3483704027c8ae2635bc066dd1fec0be1c3e | |
parent | b653e1b1521ac68fc398311345fe7df54803f1ec (diff) | |
download | binutils-c1eb148815418b80717c0abcba633c6cfc098133.zip binutils-c1eb148815418b80717c0abcba633c6cfc098133.tar.gz binutils-c1eb148815418b80717c0abcba633c6cfc098133.tar.bz2 |
Only set lma_region from the default for the first section
of a group of overlay sections.
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ldlang.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 49ec5e4..15f683c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2001-01-23 Alan Modra <alan@linuxcare.com.au> + + * ldlang.c (lang_leave_overlay): Only set lma_region from the + default for the first section of a group of overlay sections. + 2001-01-22 Alan Modra <alan@linuxcare.com.au> * Makefile.am (GENSCRIPTS): Pass exec_prefix. diff --git a/ld/ldlang.c b/ld/ldlang.c index bc25f04..2baf13b 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -4780,7 +4780,10 @@ lang_leave_overlay (fill, memspec, phdrs, lma_memspec) l->os->fill = fill; if (region != NULL && l->os->region == NULL) l->os->region = region; - if (lma_region != NULL && l->os->lma_region == NULL) + /* We only set lma_region for the first overlay section, as + subsequent overlay sections will have load_base set relative + to the first section. */ + if (lma_region != NULL && l->os->lma_region == NULL && l->next == NULL) l->os->lma_region = lma_region; if (phdrs != NULL && l->os->phdrs == NULL) l->os->phdrs = phdrs; |