Created
November 13, 2018 14:35
-
-
Save regehr/081afdaab38daedb31edbf575183acc5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include <assert.h> | |
int main(void) { | |
unsigned i = 0; | |
do { | |
assert((i / 4532) == (i * 0x39D7C7F7ULL) >> 42); | |
i++; | |
} while (i); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment