aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cris/check_xarith.s
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cris/check_xarith.s')
-rw-r--r--tests/cris/check_xarith.s46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/cris/check_xarith.s b/tests/cris/check_xarith.s
new file mode 100644
index 000000000..d0356abed
--- /dev/null
+++ b/tests/cris/check_xarith.s
@@ -0,0 +1,46 @@
+
+.include "testutils.inc"
+
+ start
+
+ moveq -1, $r0
+ moveq 0, $r1
+ addq 1, $r0
+ ax
+ addq 0, $r1
+
+ move.d $r0, $r3
+ checkr3 0
+ move.d $r1, $r3
+ checkr3 1
+
+ move.d 0, $r0
+ moveq -1, $r1
+ subq 1, $r0
+ ax
+ subq 0, $r1
+
+ move.d $r0, $r3
+ checkr3 ffffffff
+ move.d $r1, $r3
+ checkr3 fffffffe
+
+
+ moveq -1, $r0
+ moveq -1, $r1
+ cmpq -1, $r0
+ ax
+ cmpq -1, $r1
+ beq 1f
+ nop
+ fail
+1:
+ cmpq 0, $r0
+ ax
+ cmpq -1, $r1
+ bne 1f
+ nop
+ fail
+1:
+ pass
+ quit