mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
1368b914e9
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.
31 lines
369 B
ArmAsm
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
|