s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git] / tests / tcg / mips / mips64-dsp / precequ_ph_qbl.c
blob17b73311dc466fd05de75918a56fc0b2a2430ded
1 #include "io.h"
3 int main(void)
5 long long rd, rt;
6 long long result;
8 rt = 0x87654321;
9 result = 0x43803280;
11 __asm
12 ("precequ.ph.qbl %0, %1\n\t"
13 : "=r"(rd)
14 : "r"(rt)
16 if (result != rd) {
17 printf("precequ.ph.qbl wrong\n");
19 return -1;
22 return 0;