scc

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

0116-floatcmp.c (62B)


      1 int
      2 main()
      3 {
      4 	int a = 0;
      5 	float f = a + 1;
      6 
      7 	return f == a;
      8 }