aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2022-08-25 12:24:39 +0930
committerAlan Modra <amodra@gmail.com>2022-08-25 13:33:39 +0930
commit8f401e317af76b1f55fa05d5d6903814c2a5a0bf (patch)
tree3e33834dc53856d98540b664f85d833e6114e8d0 /ld
parentc6e42384f1a1fe678ae947afd3558b5188c3e10e (diff)
downloadgdb-8f401e317af76b1f55fa05d5d6903814c2a5a0bf.zip
gdb-8f401e317af76b1f55fa05d5d6903814c2a5a0bf.tar.gz
gdb-8f401e317af76b1f55fa05d5d6903814c2a5a0bf.tar.bz2
PR10372, SH: ld test with sim/sh/run fails always
PR 10372 * testsuite/ld-sh/start.s: Add _start sym. Use trapa 34. Create an alloc .stack section.
Diffstat (limited to 'ld')
-rw-r--r--ld/testsuite/ld-sh/start.s10
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: