hw/mips/gt64xxx: Fix typos in qemu_log_mask() formats
[qemu/ar7.git] / tests / tcg / openrisc / test_sfgeu.c
blob2a491d91ea0038d6fd595f80c7c090ab85a80e02
1 #include <stdio.h>
3 int main(void)
5 int a, b, c;
6 int result;
8 a = 0;
9 b = 3;
10 result = 1;
11 __asm
12 ("1:\n\t"
13 "l.addi %0, %0, 1\n\t"
14 "l.sfgeu %0, %1\n\t"
15 "l.bf 1b\n\t"
16 "l.nop\n\t"
17 : "+r"(a)
18 : "r"(b)
20 if (a != result) {
21 printf("sfgeu error\n");
22 return -1;
25 a = 0xff;
26 b = 3;
27 c = 1;
28 result = 2;
29 __asm
30 ("1:\n\t"
31 "l.sub %0, %0, %2\n\t"
32 "l.sfgeu %0, %1\n\t"
33 "l.bf 1b\n\t"
34 "l.nop\n\t"
35 : "+r"(a)
36 : "r"(b), "r"(c)
38 if (a != result) {
39 printf("sfgeu error\n");
40 return -1;
43 return 0;