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