compiler

Unnamed Compiled Systems Language Project
git clone http://frotz.net/git/compiler.git
Log | Files | Refs

ssa2.c (110B)


      1 
      2 int f();
      3 
      4 int ssa2() {
      5 	int y, z;
      6 	y =f();
      7 	if (y < 0) {
      8 		z = y + 1;
      9 	} else {
     10 		z = y + 2;
     11 	}
     12 	return z;
     13 }