s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git] / tests / tcg / mips / mips64-dsp / precrq_pw_l.c
blobda957c074391cfd1aca42ca2a857bbeab7a8e754
1 #include "io.h"
3 int main(void)
5 long long rd, rs, rt;
6 long long res;
8 rs = 0x1234567812345678;
9 rt = 0x8765432187654321;
11 res = 0x1234567887654321;
13 __asm
14 ("precrq.pw.l %0, %1, %2\n\t"
15 : "=r"(rd)
16 : "r"(rs), "r"(rt)
19 if (rd != res) {
20 printf("precrq.pw.l error\n");
21 return -1;
24 return 0;