1static _Bool setlt_umax(unsigned int a) { return (a < ~0) == (a != ~0); } 2static _Bool setle_umax(unsigned int a) { return (a <= ~1) == (a != ~0); } 3static _Bool setge_umax(unsigned int a) { return (a >= ~0) == (a == ~0); } 4static _Bool setgt_umax(unsigned int a) { return (a > ~1) == (a == ~0); } 5 6/* 7 * check-name: set-uimm2 8 * check-command: test-linearize $file 9 * 10 * check-output-ignore 11 * check-output-returns: 1 12 */ 13