aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips32-dsp/repl_ph.c
blob: 21074953bdde5824de0060e69bfba6ca2e03cd6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include<stdio.h>
#include<assert.h>

int main()
{
    int rd, result;

    result = 0x01BF01BF;
    __asm
        ("repl.ph %0, 0x1BF\n\t"
         : "=r"(rd)
        );
    assert(rd == result);

    result = 0x01FF01FF;
    __asm
        ("repl.ph %0, 0x01FF\n\t"
         : "=r"(rd)
        );
    assert(rd == result);

    return 0;
}