diff options
Diffstat (limited to 'ld/testsuite/ld-tic6x/sbr.ld')
-rw-r--r-- | ld/testsuite/ld-tic6x/sbr.ld | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ld/testsuite/ld-tic6x/sbr.ld b/ld/testsuite/ld-tic6x/sbr.ld new file mode 100644 index 00000000000..909f589e049 --- /dev/null +++ b/ld/testsuite/ld-tic6x/sbr.ld @@ -0,0 +1,9 @@ +EXTERN (__c6xabi_DSBT_BASE); +SECTIONS +{ + . = 0x80; + .data : { PROVIDE_HIDDEN (__c6xabi_DSBT_BASE = .); *(.data*) } + . = 0x10000000; + .text : { *(.text*) } + /DISCARD/ : { *(*) } +} |