aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/setcc-setne.c
blob: f982eb34cbe36b9c3ed979ccc7072cfa3c8ab0a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
static _Bool bnoteq0(int a)	{ return !(a == 0); }
static _Bool bne0(int a)	{ return  (a != 0); }
static _Bool bnotnot(int a)	{ return !!a; }

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