scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0136-if.c (181B)


      1 int c;
      2 
      3 int
      4 main()
      5 {
      6 	if(0) {
      7 		return 1;
      8 	} else if(0) {
      9 		/* empty */
     10 	} else {
     11 		if(1) {
     12 			if(c)
     13 				return 1;
     14 			else
     15 				return 0;
     16 		} else {
     17 			return 1;
     18 		}
     19 	}
     20 	return 1;
     21 }