1#define MASK		32U
2
3
4int cmps_and_ltu_gt(int a) { return ((a & MASK) <  (MASK + 1)) + 0; }
5int cmps_and_leu_gt(int a) { return ((a & MASK) <= (MASK + 1)) + 0; }
6int cmps_and_leu_eq(int a) { return ((a & MASK) <= (MASK + 0)) + 0; }
7int cmps_and_geu_gt(int a) { return ((a & MASK) >= (MASK + 1)) + 1; }
8int cmps_and_gtu_gt(int a) { return ((a & MASK) >  (MASK + 1)) + 1; }
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