1 #define MASK 32U 2 3 cmps_and_ltu_gt(int a)4int cmps_and_ltu_gt(int a) { return ((a & MASK) < (MASK + 1)) + 0; } cmps_and_leu_gt(int a)5int cmps_and_leu_gt(int a) { return ((a & MASK) <= (MASK + 1)) + 0; } cmps_and_leu_eq(int a)6int cmps_and_leu_eq(int a) { return ((a & MASK) <= (MASK + 0)) + 0; } cmps_and_geu_gt(int a)7int cmps_and_geu_gt(int a) { return ((a & MASK) >= (MASK + 1)) + 1; } cmps_and_gtu_gt(int a)8int cmps_and_gtu_gt(int a) { return ((a & MASK) > (MASK + 1)) + 1; } cmps_and_gtu_eq(int a)9int cmps_and_gtu_eq(int a) { return ((a & MASK) > (MASK + 0)) + 1; } 10 11 /* 12 * check-name: cmpu-and0 13 * check-command: test-linearize -Wno-decl $file 14 * 15 * check-output-ignore 16 * check-output-returns: 1 17 */ 18