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

    if(a){
        b = a+4;
    } else {
        b = a+2;
    }

    return b;
}
/* RETURN VALUE: 5 */