mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-01 05:55:23 +08:00
1368b914e9
Now that all port tests live under testsuite/sim/*/, and none live in testsuite/ directly, flatten the structure by moving all of the dirs under testsuite/sim/ to testsuite/ directly. We need to stop passing --tool to dejagnu so that it searches all dirs and not just ones that start with "sim". Since we have no other dirs in this tree, and no plans to add any, should be fine.
37 lines
390 B
Plaintext
37 lines
390 B
Plaintext
# cr16 testcase for push count reg insns.
|
|
# mach: cr16
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
|
|
.global push2
|
|
push2:
|
|
movd $0x1006, (sp)
|
|
movw $0x2f50, r5
|
|
movw $0x107e, r6
|
|
movw $0x35ed, r7
|
|
push $3,r5
|
|
|
|
loadw 0x1000, r3
|
|
cmpw r3,r5
|
|
beq ok1
|
|
br not_ok
|
|
not_ok:
|
|
fail
|
|
ok1:
|
|
loadw 0x1002, r3
|
|
cmpw r3,r6
|
|
beq ok2
|
|
br not_ok
|
|
ok2:
|
|
loadw 0x1004, r3
|
|
cmpw r3,r7
|
|
beq ok3
|
|
br not_ok
|
|
|
|
ok3:
|
|
pass
|
|
|
|
|