1 2 3 4 5 6 7 8 9
int main() { int a = 0x501; int b = a & ~(0x7); if (b != 0x500) { return 1; } return 0; }