Skip to content

Instantly share code, notes, and snippets.

@Bloofer
Created January 4, 2018 07:18
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/65bae182ab550b73d8644f339409101d to your computer and use it in GitHub Desktop.
Save Bloofer/65bae182ab550b73d8644f339409101d to your computer and use it in GitHub Desktop.
Constant folding step3
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