scc

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

0237-down.c (166B)


      1 /*
      2  * Regression test for incorrect typing in binary operations
      3  * in the qbe backend.
      4  */
      5 
      6 int
      7 main(void)
      8 {
      9 	long long l = 1ll < 34;
     10 
     11 	l = l + 1;
     12 
     13 	return l == 1;
     14 }