ref: 8182a159c71c03a6cd28b9c8651c26db5e1743c4
dir: /cc1/tests/test006.c/
/* name: TEST006 description: Basic test for if output: test006.c:6: warning: conditional expression is constant test006.c:8: warning: conditional expression is constant test006.c:11: warning: conditional expression is constant G1 M c F1 G2 F1 main { - j L2 #I0 yI #I1 j L3 L2 j L4 #I0 j L5 L4 j L6 #I1 j L7 G1 MI #I0 =I yI #I1 j L8 L7 yI #I0 L8 j L9 L6 yI #I1 L9 L5 L3 yI #I1 } */ char c; #line 1 int main() { if(0) { return 1; } else if(0) { /* empty */ } else { if(1) { if(c) return 1; else return 0; } else { return 1; } } return 1; }