ld: Move the .note.build-id section to near the start of the memory map.
[binutils-gdb.git] / sim / testsuite / bfin / hwloop-lt-bits.s
blobdd21c8ac8d0435c15e708a2ffcda3dd24caa9d28
1 # Blackfin testcase for HW Loops (LT) LSB behavior
2 # mach: bfin
4 .include "testutils.inc"
6 start
8 # Loading LT should always clear LSB
9 imm32 R6, 0xaaaa5555
10 R4 = R6;
11 BITCLR (R4, 0);
13 LT0 = R6;
14 LT1 = R6;
16 R0 = LT0;
17 CC = R0 == R4;
18 IF ! CC JUMP 1f;
20 R0 = LT1;
21 CC = R0 == R4;
22 IF ! CC JUMP 1f;
24 pass
25 1: fail