aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/hexagon/test_hwloops.S
blob: 42785e6f25ab8f106805005cbeff888345d47179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Purpose: simple C Program to test hardware loops. */

    .text
    .globl _start

_start:
    {
        loop0(.LBB0_1, #10)
        r2 = #0
    }
.LBB0_1:
    {
        r2 = add(r2, #1)
        nop
    }:endloop0
    {
        p0 = cmp.eq(r2, #10); if (p0.new) jump:t pass
        jump fail
    }