Skip to content

Instantly share code, notes, and snippets.

@akamah
Created October 29, 2016 08:37
Show Gist options
  • Save akamah/3b3e6d2949ca22bc24ea628ade84c6f9 to your computer and use it in GitHub Desktop.
Save akamah/3b3e6d2949ca22bc24ea628ade84c6f9 to your computer and use it in GitHub Desktop.
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