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

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

    rs = 0x1234567812345678;
    rt = 0x8765432187654321;

    res = 0x1234123487658765;

    __asm
        ("precrq.qh.pw %0, %1, %2\n\t"
         : "=r"(rd)
         : "r"(rs), "r"(rt)
        );

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

    return 0;
}