blob: d5ebc560aa07c70a7daefb6d1e689b7a84c90731 [file] [log] [blame]
#include <stdio.h>
long long Large = 5LL << 48;
int main(int argc, const char *argv[]) {
// Make sure large constants compare correctly.
if (((Large >> 48) & 7LL) == 5LL) {
printf("Works.\n");
} else {
printf("Doesn\'t.\n");
}
return 0;
}