Add qemu 2.4.0
[kvmfornfv.git] / qemu / tests / tcg / mips / mips64-dsp / preceu_qh_obr.c
1 #include "io.h"
2
3 int main(void)
4 {
5     long long rd, rt, result;
6
7     rt = 0x123456789ABCDEF0;
8     result = 0x009A00BC00DE00F0;
9
10     __asm
11         ("preceu.qh.obr %0, %1\n\t"
12          : "=r"(rd)
13          : "r"(rt)
14         );
15
16     if (result != rd) {
17         printf("preceu.qh.obr error\n");
18
19         return -1;
20     }
21
22     return 0;
23 }