hw/arm/virt: pass VirtMachineState instead of VirtGuestInfo
[qemu/ar7.git] / tests / tcg / openrisc / test_sfnei.c
blobd311c9e6602242a17c8222c177f182ad0b1350d7
1 #include <stdio.h>
3 int main(void)
5 int a;
6 int result;
8 a = 0;
9 result = 3;
10 __asm
11 ("1:\n\t"
12 "l.addi %0, %0, 3\n\t"
13 "l.sfnei %0, 0x3\n\t"
14 "l.bf 1b\n\t"
15 "l.nop\n\t"
16 : "+r"(a)
18 if (a != result) {
19 printf("sfnei error\n");
20 return -1;
23 a = 0;
24 result = 3;
25 __asm
26 ("1:\n\t"
27 "l.addi %0, %0, 1\n\t"
28 "l.sfnei %0, 0x3\n\t"
29 "l.bf 1b\n\t"
30 "l.nop\n\t"
31 : "+r"(a)
33 if (a != result) {
34 printf("sfnei error\n");
35 return -1;
38 return 0;