binutils-gdb/sim/testsuite/bfin/cc0.s
Mike Frysinger 1368b914e9 sim: testsuite: flatten tree
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.
2021-01-15 19:18:34 -05:00

31 lines
369 B
ArmAsm

# Blackfin testcase for overflow
# mach: bfin
.include "testutils.inc"
start
# add 0x80000000 + 0x80000000
R1 = 1;
R1 <<= 31;
R0 = R1;
R0 = R0 + R1;
CC = V; // check to see if av0 and ac get set
CC &= AC0;
IF !CC JUMP art;
R1 = 0;
R1 += 0;
CC = AZ;
IF !CC JUMP art;
pass
art:
R0 = CC;
R1 = 1 (Z);
CC = R1 == R0
if CC jump 1f;
fail
1:
pass