s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git] / tests / tcg / mips / mips64-dsp / precr_ob_qh.c
blobce2da79af8db65c27ed3c807daa4994c0915ea08
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 = 0x3478347865216521;
13 __asm
14 ("precr.ob.qh %0, %1, %2\n\t"
15 : "=r"(rd)
16 : "r"(rs), "r"(rt)
19 if (rd != res) {
20 printf("precr.ob.qh error\n");
21 return -1;
24 return 0;