aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tcg/mips/mips64-dsp/shrl_qh.c
blob: c1562463e073344b5ae8b520a932a83419f7a8c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "io.h"

int main(void)
{
    long long rd, rt;
    long long res;

    rt = 0x8765679abc543786;
    res = 0x087606790bc50378;

    __asm
        ("shrl.qh %0, %1, 0x4\n\t"
         : "=r"(rd)
         : "r"(rt)
        );

    if (rd != res) {
        printf("shrl.qh error\n");
        return -1;
    }
    return 0;
}