aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_GOTO.c
blob: 4aa1266b391d0816f0465a98e7d6a3a3398e86af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int goto_(int a)
{
    goto helloWorld;

start_:
    a += 2;

    goto end_;

helloWorld:
    a *= 3;
    goto start_;

end_:
    a -= 1;
    return a;
}