Skip to content

Instantly share code, notes, and snippets.

@cwabbott0
Last active January 29, 2021 17:57
Show Gist options
  • Save cwabbott0/4c8fcea24bed70e0f82a410f4947e036 to your computer and use it in GitHub Desktop.
Save cwabbott0/4c8fcea24bed70e0f82a410f4947e036 to your computer and use it in GitHub Desktop.
block_1:
if ... goto block_2 else block_4
block_2:
a_1 = ...
if ... goto block_3 else block_5
block_3:
a_2 = ...
... = a_1 // !!!
goto block_6
block_4:
a_3 = ...
goto block_5
block_5:
a_4 = phi(a_1, a_3)
goto block_6
block_6:
a_5 = phi(a_2, a_4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment