aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-tic6x/unwind.ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-tic6x/unwind.ld')
-rw-r--r--ld/testsuite/ld-tic6x/unwind.ld20
1 files changed, 20 insertions, 0 deletions
diff --git a/ld/testsuite/ld-tic6x/unwind.ld b/ld/testsuite/ld-tic6x/unwind.ld
new file mode 100644
index 0000000..a4f8722
--- /dev/null
+++ b/ld/testsuite/ld-tic6x/unwind.ld
@@ -0,0 +1,20 @@
+/* Script for unwinding ld tests */
+SECTIONS
+{
+ /* Read-only sections, merged into text segment: */
+ . = 0x8000;
+ .text :
+ {
+ *(.before)
+ *(.text)
+ *(.after)
+ *(.c6xabi.extab*)
+ } =0
+ . = 0x9000;
+ .c6xabi.exidx : { *(.c6xabi.exidx*) }
+ . = 0xa000;
+ .got : { *(.got) *(.got.plt)}
+ . = 0x12340000;
+ .far : { *(.far) }
+ .c6xabi.attribues 0 : { *(.c6xabi.atttributes) }
+}