osdep: protect qemu/osdep.h with extern "C"
[qemu/ar7.git] / tests / tcg / openrisc / test_sfles.c
blobf5735228feadf52a965ebe51729f2bd4d0378772
1 #include <stdio.h>
3 int main(void)
5 int a, b;
6 int result;
8 a = 0;
9 b = 3;
10 result = 4;
11 __asm
12 ("1:\n\t"
13 "l.addi %0, %0, 4\n\t"
14 "l.sfles %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("sfles error\n");
22 return -1;
25 return 0;