diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ld-sh/start.s | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ld/testsuite/ld-sh/start.s b/ld/testsuite/ld-sh/start.s index 2af4c79..71071ed 100644 --- a/ld/testsuite/ld-sh/start.s +++ b/ld/testsuite/ld-sh/start.s @@ -1,6 +1,8 @@ .section .text .global start + .global _start start: +_start: mov.l stack_k,r15 @@ -19,9 +21,11 @@ main_k: .global _trap _trap: - trapa #3 + trapa #34 rts nop - .section .stack -_stack: .long 0xdeaddead + .section .stack,"aw",%nobits + .balign 4096 + .space 4096 +_stack: |