disas/nanomips: Replace proprietary by POSIX data types
[qemu/ar7.git] / tests / tcg / mips / mips64-dsp / shra_r_pw.c
blob6a86e684b8aec1756d454fdf8adf00fea99e47d8
1 #include "io.h"
3 int main(void)
5 long long rd, rt;
6 long long res;
8 rt = 0x1234567887654321;
9 res = 0x01234568f8765432;
11 __asm
12 ("shra_r.pw %0, %1, 0x4"
13 : "=r"(rd)
14 : "r"(rt)
17 if (rd != res) {
18 printf("shra_r.pw error\n");
19 return -1;
22 rt = 0x1234567887654321;
23 res = 0x1234567887654321;
25 __asm
26 ("shra_r.pw %0, %1, 0x0"
27 : "=r"(rd)
28 : "r"(rt)
31 if (rd != res) {
32 printf("shra_r.pw error\n");
33 return -1;
35 return 0;