From d8795fb4a9acea4671a212e6beee088549660f55 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 7 Sep 2004 15:54:47 +0000 Subject: [PATCH] * ldexp.c (fold_binary) [DATA_SEGMENT_ALIGN]: Apply data segment alignment before adjusting DATA_SEGMENT_RELRO_END. --- ld/ChangeLog | 5 +++++ ld/ldexp.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ld/ChangeLog b/ld/ChangeLog index e61f71960..0f5562268 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2004-09-07 Andreas Schwab + + * ldexp.c (fold_binary) [DATA_SEGMENT_ALIGN]: Apply data segment + alignment before adjusting DATA_SEGMENT_RELRO_END. + 2004-09-06 Mark Mitchell * emulparams/armsymbian.sh: Use armbpabi script. diff --git a/ld/ldexp.c b/ld/ldexp.c index e7587c171..c19070f41 100644 --- a/ld/ldexp.c +++ b/ld/ldexp.c @@ -427,6 +427,7 @@ fold_binary (etree_type *tree, a common page boundary. */ bfd_vma relro; + result.value += dot & (maxpage - 1); relro = exp_data_seg.relro_end - exp_data_seg.base; result.value += -relro & (other.value - 1); exp_data_seg.base = result.value; -- 2.11.4.GIT