mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
* ldexp.c (fold_binary) [DATA_SEGMENT_ALIGN]: Apply data segment
alignment before adjusting DATA_SEGMENT_RELRO_END.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2004-09-07 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
* ldexp.c (fold_binary) [DATA_SEGMENT_ALIGN]: Apply data segment
|
||||||
|
alignment before adjusting DATA_SEGMENT_RELRO_END.
|
||||||
|
|
||||||
2004-09-06 Mark Mitchell <mark@codesourcery.com>
|
2004-09-06 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* emulparams/armsymbian.sh: Use armbpabi script.
|
* emulparams/armsymbian.sh: Use armbpabi script.
|
||||||
|
@ -427,6 +427,7 @@ fold_binary (etree_type *tree,
|
|||||||
a common page boundary. */
|
a common page boundary. */
|
||||||
bfd_vma relro;
|
bfd_vma relro;
|
||||||
|
|
||||||
|
result.value += dot & (maxpage - 1);
|
||||||
relro = exp_data_seg.relro_end - exp_data_seg.base;
|
relro = exp_data_seg.relro_end - exp_data_seg.base;
|
||||||
result.value += -relro & (other.value - 1);
|
result.value += -relro & (other.value - 1);
|
||||||
exp_data_seg.base = result.value;
|
exp_data_seg.base = result.value;
|
||||||
|
Reference in New Issue
Block a user