diff options
Diffstat (limited to 'tests/cris/check_movei.s')
-rw-r--r-- | tests/cris/check_movei.s | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/cris/check_movei.s b/tests/cris/check_movei.s new file mode 100644 index 0000000000..2defda5f30 --- /dev/null +++ b/tests/cris/check_movei.s @@ -0,0 +1,47 @@ +# mach: crisv32 +# output: fffffffe\n +# output: fffffffe\n + +; Check basic integral-write semantics regarding flags. + + .include "testutils.inc" + start + +; A write that works. Check that flags are set correspondingly. + move.d d,r4 + moveq -2,r5 + setf c + clearf p + move.d [r4],r3 + ax + move.d r5,[r4] + move.d [r4],r3 + + bcc 0f + nop + fail + +0: + checkr3 fffffffe + +; A write that fails; check flags too. + move.d d,r4 + moveq 23,r5 + setf p + clearf c + move.d [r4],r3 + ax + move.d r5,[r4] + move.d [r4],r3 + + bcs 0f + nop + fail + +0: + checkr3 fffffffe + quit + + .data +d: + .dword 42424242 |