Skip to content

Instantly share code, notes, and snippets.

@Bloofer
Created January 4, 2018 07:17
Show Gist options
  • Save Bloofer/fc3f81b4377a4892f57ec6ab7c59f0a1 to your computer and use it in GitHub Desktop.
Save Bloofer/fc3f81b4377a4892f57ec6ab7c59f0a1 to your computer and use it in GitHub Desktop.
Constant folding step2
int a = 30;
int b = 3;
int c;
c = 12;
if (true) {
c = 2;
}
return c * 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment