aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/hexagon/test_vlsrw.S
blob: 912e49aa0bf5797ea1906d788564df79f43ffca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Purpose: test the soundness of the vlsrw operation */

    .text
    .globl _start

_start:
    {
        r0 = #0x00000001
        r1 = #0x00000001
    }
    {
        r1:0 = vlsrw(r1:0, #1)
    }
    {
        r0 = add(r0, r1)
    }
    {
        p0 = cmp.eq(r0, #0); if (p0.new) jump:t pass
        jump fail
    }