scc

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

0099-tentative.c (79B)


      1 int x, x = 3, x;
      2 
      3 int
      4 main()
      5 {
      6 	if (x != 3)
      7 		return 0;
      8 
      9 	x = 0;
     10 	return x;
     11 }
     12