1static _Bool blt(int a, int b)	{ return  (a <  b); }
2static _Bool bnge(int a, int b)	{ return !(a >= b); }
3static _Bool bgt(int a, int b)	{ return  (a >  b); }
4static _Bool bnle(int a, int b)	{ return !(a <= b); }
5static _Bool ble(int a, int b)	{ return  (a <= b); }
6static _Bool bngt(int a, int b)	{ return !(a >  b); }
7static _Bool bge(int a, int b)	{ return  (a >= b); }
8static _Bool bnlt(int a, int b)	{ return !(a <  b); }
9
10/*
11 * check-name: optim/setcc-setcc
12 * check-command: test-linearize $file
13 * check-output-ignore
14 *
15 * check-output-excludes: set..\\.32
16 * check-output-excludes: setne\\.1
17 * check-output-excludes: seteq\\.1
18 * check-output-contains: set[gt][te]\\.1
19 */
20