Skip to content

Instantly share code, notes, and snippets.

@Bloofer
Created January 4, 2018 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bloofer/2c92047b942eb3b90079b03064b6926b to your computer and use it in GitHub Desktop.
Save Bloofer/2c92047b942eb3b90079b03064b6926b to your computer and use it in GitHub Desktop.
Constant folding step1
int a = 30;
int b = 3;
int c;
c = b * 4;
if (c > 10) {
c = c - 10;
}
return c * 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment