block/nfs: bump libnfs requirement to 1.9.3
[qemu/ar7.git] / tests / tcg / mips / mips64-dsp / shrl_qh.c
blobc1562463e073344b5ae8b520a932a83419f7a8c6
1 #include "io.h"
3 int main(void)
5 long long rd, rt;
6 long long res;
8 rt = 0x8765679abc543786;
9 res = 0x087606790bc50378;
11 __asm
12 ("shrl.qh %0, %1, 0x4\n\t"
13 : "=r"(rd)
14 : "r"(rt)
17 if (rd != res) {
18 printf("shrl.qh error\n");
19 return -1;
21 return 0;