aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/phdrs2.t
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-scripts/phdrs2.t')
-rw-r--r--ld/testsuite/ld-scripts/phdrs2.t23
1 files changed, 23 insertions, 0 deletions
diff --git a/ld/testsuite/ld-scripts/phdrs2.t b/ld/testsuite/ld-scripts/phdrs2.t
new file mode 100644
index 0000000..0d32b39
--- /dev/null
+++ b/ld/testsuite/ld-scripts/phdrs2.t
@@ -0,0 +1,23 @@
+PHDRS
+{
+ text PT_LOAD ;
+ data PT_LOAD ;
+}
+
+SECTIONS
+{
+ . = 0x800000 - 1;
+ /* The PHDRS generated should start at the aligned .text section
+ address, not the unaligned .empty section address */
+ .empty : {
+ EMPTY_START = ABSOLUTE(.) ;
+ *(.empty)
+ EMPTY_END = ABSOLUTE(.) ;
+ } : text
+ .text : { *(.text) } :text
+ .data : { *(.data)
+ LONG(EMPTY_START) ;
+ } :data
+
+ /DISCARD/ : { *(.*) }
+}