1 #define M 32 2 eq(int a)3_Bool eq(int a) { return ((a & M) != M) == ((a & M) == 0); } ne(int a)4_Bool ne(int a) { return ((a & M) == M) == ((a & M) != 0); } 5 6 /* 7 * check-name: cmp-and-pow2 8 * check-command: test-linearize -Wno-decl $file 9 * 10 * check-output-ignore 11 * check-output-returns: 1 12 */ 13