summaryrefslogtreecommitdiffstats
path: root/src/tests/tcg/mips/mips64-dsp/precr_ob_qh.c
blob: ce2da79af8db65c27ed3c807daa4994c0915ea08 (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 = 0x3478347865216521;

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

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

    return 0;
}
OpenPOWER on IntegriCloud