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

int main()
{
    int rd, rt;
    int result;

    rt = 0x87654321;
    result = 0x87650000;

    __asm
        ("preceq.w.phl %0, %1\n\t"
         : "=r"(rd)
         : "r"(rt)
        );
    assert(result == rd);

    return 0;
}