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