hw/dma/xilinx_axidma: remove dead code
[qemu/ar7.git] / tests / tcg / openrisc / test_sfgtu.c
blobda2868916d482132929d9004405c94ac364c8f35
1 #include <stdio.h>
2 int main(void)
4 int a, b, c;
5 int result;
7 a = 0;
8 b = 3;
9 result = 1;
10 __asm
11 ("1:\n\t"
12 "l.addi %0, %0, 1\n\t"
13 "l.sfgtu %0, %1\n\t"
14 "l.bf 1b\n\t"
15 "l.nop\n\t"
16 : "+r"(a)
17 : "r"(b)
19 if (a != result) {
20 printf("sfgtu error\n");
21 return -1;
24 a = 0xff;
25 b = 3;
26 c = 1;
27 result = 3;
28 __asm
29 ("1:\n\t"
30 "l.sub %0, %0, %2\n\t"
31 "l.sfgtu %0, %1\n\t"
32 "l.bf 1b\n\t"
33 "l.nop\n\t"
34 : "+r"(a)
35 : "r"(b), "r"(c)
37 if (a != result) {
38 printf("sfgtu error\n");
39 return -1;
42 return 0;