1static _Bool beq0(int a)	{ return  (a == 0); }
2static _Bool bnotneq0(int a)	{ return !(a != 0); }
3static _Bool bnot(int a)	{ return !a; }
4
5/*
6 * check-name: optim/setcc-seteq
7 * check-command: test-linearize $file
8 * check-output-ignore
9 *
10 * check-output-excludes: set..\\.32
11 * check-output-excludes: setne\\.1
12 * check-output-contains: seteq\\.1
13 */
14