Created
October 29, 2016 08:37
-
-
Save akamah/3b3e6d2949ca22bc24ea628ade84c6f9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (B == 0) { | |
if (A == 0) { // (*) | |
X = 0; goto wrote_X; | |
} else { | |
X = 1; goto wrote_X; | |
} | |
} else { | |
if (A == 0) { // (*) | |
X = 1; goto wrote_X; | |
} else { | |
X = 0; goto wrote_X; | |
} | |
} | |
wrote_X: ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment