1int and(int a, int b) { return ((a == b) & (a != b)) == 0; } 2int ior(int a, int b) { return ((a == b) | (a != b)) == 1; } 3int xor(int a, int b) { return ((a == b) ^ (a != b)) == 1; } 4 5/* 6 * check-name: cse-not02 7 * check-command: test-linearize -Wno-decl $file 8 * 9 * check-output-ignore 10 * check-output-returns: 1 11 */ 12