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

int main(void)
{
    long long rd, result;

    result = 0xFFFFFFFFBFBFBFBF;
    __asm
        ("repl.qb %0, 0xBF\n\t"
         : "=r"(rd)
        );
    if (rd != result) {
        printf("repl.qb wrong\n");

        return -1;
    }

    return 0;
}