diff options
Diffstat (limited to 'tests/cris/check_xarith.s')
-rw-r--r-- | tests/cris/check_xarith.s | 46 |
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 0000000000..d0356abed2 --- /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 |