diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-12-17 15:50:02 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-12-17 15:50:02 +0000 |
commit | e3070fef41863855bd4fcade884cfda11abedb06 (patch) | |
tree | a1e4c6daf75abe8a13d92f693f2810602eb754d6 /ld/ldexp.c | |
parent | 9d2be1eec8fda466eebb0da7eefdc5b583649ca3 (diff) | |
download | gdb-e3070fef41863855bd4fcade884cfda11abedb06.zip gdb-e3070fef41863855bd4fcade884cfda11abedb06.tar.gz gdb-e3070fef41863855bd4fcade884cfda11abedb06.tar.bz2 |
* ldexp.h (exp_data_seg): Add min_base and maxpagesize fields.
* ldexp.c (fold_binary) <case DATA_SEGMENT_ALIGN>: Initialize them.
* ldlang.c (lang_size_sections): Use them to avoid wasting virtual
address space at DATA_SEGMENT_ALIGN. Fix computation of expected
PT_GNU_RELRO segment end.
Diffstat (limited to 'ld/ldexp.c')
-rw-r--r-- | ld/ldexp.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -435,8 +435,10 @@ fold_binary (etree_type *tree, if (allocation_done == lang_allocating_phase_enum) { exp_data_seg.phase = exp_dataseg_align_seen; + exp_data_seg.min_base = align_n (dot, maxpage); exp_data_seg.base = result.value; exp_data_seg.pagesize = other.value; + exp_data_seg.maxpagesize = maxpage; exp_data_seg.relro_end = 0; } } |