db/insert_manual_states.pl: remove debug output
[smatch.git] / validation / optim / bool-eq0.c
blobdbc93d95c61770bc4518c1e2de100abbc362c39c
1 int beq0(int a) { return a == 0; }
2 int bnotne0(int a) { return !(a != 0); }
3 int bnot(int a) { return !a; }
5 /*
6 * check-name: bool-eq0
7 * check-command: test-linearize -Wno-decl $file
8 * check-output-ignore
10 * check-output-excludes: setne\\.
11 * check-output-contains: seteq\\.