summaryrefslogtreecommitdiff
path: root/sim/testsuite/cris/asm/ret.ms
diff options
context:
space:
mode:
Diffstat (limited to 'sim/testsuite/cris/asm/ret.ms')
-rw-r--r--sim/testsuite/cris/asm/ret.ms25
1 files changed, 25 insertions, 0 deletions
diff --git a/sim/testsuite/cris/asm/ret.ms b/sim/testsuite/cris/asm/ret.ms
new file mode 100644
index 00000000000..578c5e1cba4
--- /dev/null
+++ b/sim/testsuite/cris/asm/ret.ms
@@ -0,0 +1,25 @@
+# mach: crisv3 crisv8 crisv10
+# output: 3\n
+
+# Test that ret works.
+
+ .include "testutils.inc"
+ start
+x:
+ moveq 0,r3
+ jsr z
+w:
+ quit
+y:
+ addq 1,r3
+ dumpr3
+ quit
+
+z:
+ addq 1,r3
+ move srp,r2
+ add.d y-w,r2
+ move r2,srp
+ ret
+ addq 1,r3
+ quit