aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/forvar.c
blob: 5ada43574644323f4008b578890f033cad8b1d9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int main(void){
    int i;
    int a = 4;
    int b = 12;

    for (i = 0 ; i < b ; i++)
        a++;

    return a;
}

/* RETURN VALUE: 16 */