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