aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/branchzu.c
blob: 16bbc4c1153919bc4e92e7ecbb9a09bdc64b23bd (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: 3 */