aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips32-dsp/shrl_qb.c
blob: a7e4e6a5e4f5491ef0b807e4716eaf6651257b93 (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
31
#include<stdio.h>
#include<assert.h>

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

    rt     = 0x12345678;
    result = 0x00010203;

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

    rt     = 0x12345678;
    result = 0x12345678;

    __asm
        ("shrl.qb %0, %1, 0x0\n\t"
         : "=r"(rd)
         : "r"(rt)
        );

    assert(rd == result);

    return 0;
}