aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/general/cb.wlez.c
blob: 4393003b91f8e36427240e7e76cc940e479353bb (plain)
1
2
3
4
5
6
7
8
9
#define TYPE int

int main(void){
    TYPE a = 6;
    TYPE b = -4;
    if (a > 0)
      return 42;
    return 0;
}