aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips32-dsp/raddu_w_qb.c
blob: 77a983c0d20f39c9631c8e87865686345b2e93b1 (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, rs;
    int result;

    rs = 0x12345678;
    result = 0x114;

    __asm
        ("raddu.w.qb %0, %1\n\t"
         : "=r"(rd)
         : "r"(rs)
        );
    assert(rd == result);

    return 0;
}