block/nfs: bump libnfs requirement to 1.9.3
[qemu/ar7.git] / tests / tcg / mips / mips64-dsp / dpau_h_qbr.c
blob3282461a7d197af7b91b6341bd6e4c3b679e7c9f
1 #include "io.h"
3 int main(void)
5 long long rs, rt;
6 long long ach = 5, acl = 3;
7 long long resulth, resultl;
9 rs = 0x800000FF;
10 rt = 0x80000002;
11 resulth = 0x05;
12 resultl = 0x0201;
13 __asm
14 ("mthi %0, $ac1\n\t"
15 "mtlo %1, $ac1\n\t"
16 "dpau.h.qbr $ac1, %2, %3\n\t"
17 "mfhi %0, $ac1\n\t"
18 "mflo %1, $ac1\n\t"
19 : "+r"(ach), "+r"(acl)
20 : "r"(rs), "r"(rt)
22 if ((ach != resulth) || (acl != resultl)) {
23 printf("dpau.h.qbr wrong\n");
25 return -1;
28 return 0;