scc

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

0272-div.c (129B)


      1 double g = 3.0;
      2 
      3 int
      4 main(void)
      5 {
      6 	float f;
      7 	double d;
      8 
      9 	f = g / 4;
     10 	d = g / 3;
     11 
     12 	if (f == 0 || f == 0)
     13 		return 1;
     14 	return 0;
     15 }