aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/hexagon/test_round.S
blob: 3c83812fe8908dcbde9cef6e4fba10df41e186f9 (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
/*
 * Purpose: test example, verify the soundness of the cround operation
 * 106 = 0b1101010 with the comma at third digit is 12.5 which is crounded to 12
 * but rounded to 13.
 */

    .text
    .globl _start

_start:
    {
        r1 = #200
    }
    {
        r2 = round(r1, #4)
    }
    {
        p0 = cmp.eq(r2, #13); if (p0.new) jump:t test2
        jump fail
    }

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