Add qemu 2.4.0
[kvmfornfv.git] / qemu / tests / tcg / mips / mips32-dsp / precequ_ph_qbl.c
1 #include<stdio.h>
2 #include<assert.h>
3
4 int main()
5 {
6     int rd, rt;
7     int result;
8
9     rt = 0x87654321;
10     result = 0x43803280;
11
12     __asm
13         ("precequ.ph.qbl %0, %1\n\t"
14          : "=r"(rd)
15          : "r"(rt)
16         );
17     assert(result == rd);
18
19     return 0;
20 }