mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +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.
24 lines
383 B
ArmAsm
24 lines
383 B
ArmAsm
// When the RND12 instruction produces large negative results, the AV0 flag is
|
|
// should not be set.
|
|
# mach: bfin
|
|
|
|
#include "test.h"
|
|
.include "testutils.inc"
|
|
start
|
|
|
|
init_r_regs 0;
|
|
ASTAT = R0;
|
|
|
|
R0.H = 0xcef4;
|
|
R0.L = 0x3ed6;
|
|
R1.H = 0x56f4;
|
|
R1.L = 0x417a;
|
|
R2.H = R0 - R1 (RND12);
|
|
|
|
_DBG ASTAT;
|
|
R0 = ASTAT;
|
|
CHECKREG R0, (_VS|_V|_V_COPY|_AN);
|
|
CHECKREG R2, 0x80000000;
|
|
|
|
pass
|