meson: Warn when TCI is selected but TCG backend is available
[qemu/ar7.git] / tests / tcg / openrisc / test_add.c
blob3d23592e7606f84ad8d30121e43ed56189b48795
1 #include <stdio.h>
3 int main(void)
5 int a, b, d;
6 int result;
8 a = 0x100;
9 b = 0x100;
10 result = 0x200;
11 __asm
12 ("l.add %0, %0, %1\n\t"
13 : "+r"(a)
14 : "r"(b)
16 if (a != result) {
17 printf("add error\n");
18 return -1;
21 a = 0xffff;
22 b = 0x1;
23 result = 0x10000;
24 __asm
25 ("l.add %0, %0, %1\n\t"
26 : "+r"(a)
27 : "r"(b)
29 if (a != result) {
30 printf("add error\n");
31 return -1;
34 a = 0x7fffffff;
35 b = 0x1;
36 __asm
37 ("l.add %0, %1, %2\n\t"
38 : "=r"(d)
39 : "r"(b), "r"(a)
42 return 0;