diff options
Diffstat (limited to 'ld/testsuite/ld-checks/script')
-rw-r--r-- | ld/testsuite/ld-checks/script | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ld/testsuite/ld-checks/script b/ld/testsuite/ld-checks/script new file mode 100644 index 0000000..44c6a08 --- /dev/null +++ b/ld/testsuite/ld-checks/script @@ -0,0 +1,6 @@ +SECTIONS { + .text 0x100 : { *(.text) } + .data 0x100 : AT (0x100) { *(.data) } + .bss 0x100 : AT (0x4000) { *(.bss) } +} + |