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