Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/sim/testsuite/bfin/hwloop-lt-bits.s
2023-03-06 14:48:14 +01:00

25 lines
317 B
ArmAsm

# Blackfin testcase for HW Loops (LT) LSB behavior
# mach: bfin
.include "testutils.inc"
start
# Loading LT should always clear LSB
imm32 R6, 0xaaaa5555
R4 = R6;
BITCLR (R4, 0);
LT0 = R6;
LT1 = R6;
R0 = LT0;
CC = R0 == R4;
IF ! CC JUMP 1f;
R0 = LT1;
CC = R0 == R4;
IF ! CC JUMP 1f;
pass
1: fail