aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/hexagon/test_vavgw.S
blob: 53c9df706a4e1298c3d66f29d0f53d02a25e48fc (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
/*
 * Purpose: test example, verify the soundness of the vavgw operation.
 *
 * 0x00030001 averaged with 0x00010003 results 0x00020002.
 */

    .text
    .globl _start

_start:
    {
        r0 = #3
        r1 = #1
    }
    {
        r2 = #1
        r3 = #3
    }
    {
        r1:0 = vavgw(r1:0, r3:2):crnd
    }
    {
        p0 = cmp.eq(r0, #2); if (p0.new) jump:t test2
        jump fail
    }

test2:
    {
        p0 = cmp.eq(r1, #2); if (p0.new) jump:t pass
        jump fail
    }