qapi: drop the sentinel in enum array
[qemu/armbru.git] / tests / tcg / mips / mips64-dspr2 / subu_ph.c
blob60a6b1b7da73ffe9ea8e446233fe680c09b3bf0d
1 #include"io.h"
3 int main(void)
5 long long rd, rs, rt, dsp;
6 long long result, resultdsp;
8 rs = 0x87654321;
9 rt = 0x12345678;
10 result = 0x7531ECA9;
11 resultdsp = 0x01;
13 __asm
14 ("subu.ph %0, %2, %3\n\t"
15 "rddsp %1\n\t"
16 : "=r"(rd), "=r"(dsp)
17 : "r"(rs), "r"(rt)
19 dsp = (dsp >> 20) & 0x01;
20 if (dsp != resultdsp || rd != result) {
21 printf("subu.ph error\n");
22 return -1;
25 return 0;