aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips32-dspr2/shrl_ph.c
blob: 724b9a7a4691b1a24448c6588244513582aecff3 (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     = 0x12345678;
    result = 0x009102B3;

    __asm
        ("shrl.ph %0, %1, 0x05\n\t"
         : "=r"(rd)
         : "r"(rt)
        );
    assert(rd == result);

    return 0;
}