qemu-error: add {error, warn}_report_once_cond
[qemu.git] / tests / tcg / mips / mips64-dsp / preceu_qh_obl.c
blob63f9373b08ea5d0b0f349743311077709675c0b4
1 #include "io.h"
3 int main(void)
5 long long rd, rt, result;
6 rt = 0x123456789ABCDEF0;
7 result = 0x0012003400560078;
9 __asm
10 ("preceu.qh.obl %0, %1\n\t"
11 : "=r"(rd)
12 : "r"(rt)
15 if (result != rd) {
16 printf("preceu.qh.obl error\n");
18 return -1;
21 return 0;