aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tcg/mips/mips64-dsp/repl_ph.c
blob: 11d29bdbc24244195caad570a5221fa28b23f880 (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
26
27
28
29
30
#include "io.h"

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

    result = 0x01BF01BF;
    __asm
        ("repl.ph %0, 0x1BF\n\t"
         : "=r"(rd)
        );
    if (rd != result) {
        printf("repl.ph wrong\n");

        return -1;
    }

    result = 0x01FF01FF;
    __asm
        ("repl.ph %0, 0x01FF\n\t"
         : "=r"(rd)
        );
    if (rd != result) {
        printf("repl.ph wrong\n");

        return -1;
    }

    return 0;
}