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