binutils-gdb/sim/testsuite/bfin/c_dsp32alu_a_neg_a.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

35 lines
505 B
ArmAsm

//Original:/testcases/core/c_dsp32alu_a_neg_a/c_dsp32alu_a_neg_a.dsp
// Spec Reference: dsp32alu a = neg a
# mach: bfin
.include "testutils.inc"
start
imm32 r0, 0xa5678911;
imm32 r1, 0x2789ab1d;
imm32 r2, 0x3b44b515;
imm32 r3, 0x46667717;
imm32 r4, 0x5567891b;
imm32 r5, 0x6789ab1d;
imm32 r6, 0x74445515;
imm32 r7, 0x86667777;
A1 = A0 = 0;
A0 = R0;
A0 = - A0;
A1 = - A0;
A1 = - A1;
A0 = - A1;
R1 = A0.w;
R2 = A1.w;
CHECKREG r0, 0xA5678911;
CHECKREG r1, 0xA5678911;
CHECKREG r2, 0x5A9876EF;
pass