libqtest: Inline g_assert_no_errno()
[qemu/armbru.git] / tests / tcg / mips / mips64-dspr2 / subqh_ph.c
blob90374019aee9b19bad3b2739171285647a922f2c
1 #include"io.h"
3 int main(void)
5 long long rd, rs, rt;
6 long long result;
8 rs = 0x12345678;
9 rt = 0x87654321;
10 result = 0x456709AB;
12 __asm
13 ("subqh.ph %0, %1, %2\n\t"
14 : "=r"(rd)
15 : "r"(rs), "r"(rt)
17 if (rd != result) {
18 printf("subqh.ph error\n");
19 return -1;
22 return 0;