aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/setcc-seteq.c
blob: d8765fe1036a09fbc30f033f5a487c296ee92b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
static _Bool beq0(int a)	{ return  (a == 0); }
static _Bool bnotneq0(int a)	{ return !(a != 0); }
static _Bool bnot(int a)	{ return !a; }

/*
 * check-name: optim/setcc-seteq
 * check-command: test-linearize $file
 * check-output-ignore
 *
 * check-output-excludes: set..\\.32
 * check-output-excludes: setne\\.1
 * check-output-contains: seteq\\.1
 */