aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips64-dsp/packrl_pw.c
blob: 780741883426fcc52171ae5674660e1ed22f7a89 (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
#include "io.h"

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

    rs = 0x1234567887654321;
    rt = 0xabcdef9812345678;

    res = 0x87654321abcdef98;

    __asm
        ("packrl.pw %0, %1, %2\n\t"
         : "=r"(rd)
         : "r"(rs), "r"(rt)
        );
    if (rd != res) {
        printf("packrl.pw error\n");
        return -1;
    }

    return 0;
}