diff options
Diffstat (limited to 'ld/testsuite/ld-mep/mep1.ld')
-rw-r--r-- | ld/testsuite/ld-mep/mep1.ld | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ld/testsuite/ld-mep/mep1.ld b/ld/testsuite/ld-mep/mep1.ld new file mode 100644 index 0000000000000..d0a41043b6274 --- /dev/null +++ b/ld/testsuite/ld-mep/mep1.ld @@ -0,0 +1,8 @@ +SECTIONS +{ + /* This is beyond the normal range of a PCREL24 (bsr) relocation. */ + . = 0x100000; + .text1 : { *(.text1) } + . = 0x900000; + .text2 : { *(.text2) } +} |