aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/hexagon/test_abs.S
blob: d68aea6f64d7911d2e5b1036e76339dd0ee51d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Purpose: test example, verify the soundness of the abs operation */

    .text
    .globl _start

_start:
    {
        r1 = #-2
        r2 = #2
    }
    {
        r3 = abs(r1)
    }
    {
        p0 = cmp.eq(r3, r2); if (p0.new) jump:t pass
        jump fail
    }