Avoid exponential behavior in rust_evaluate_subexp
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / phdrs3.t
CommitLineData
5c1a3f0f
NS
1PHDRS
2{
3 data PT_LOAD ;
4 header PT_PHDR PHDRS ; /* OK */
5 text PT_LOAD FILEHDR PHDRS ;
6}
7
8SECTIONS
9{
10 /* This test will fail on architectures where the startaddress below
11 is less than the constant MAXPAGESIZE. */
12 . = 0x800000 + SIZEOF_HEADERS;
13 .text : { *(.text) } :text
14 .data : { *(.data) } :data
15 /DISCARD/ : { *(.*) }
16}
This page took 0.336884 seconds and 4 git commands to generate.