db/insert_manual_states.pl: remove debug output
[smatch.git] / validation / optim / bool-neq0.c
blobd6ad7aec3d93c01fbc31ec0ceeb7b1c3162a1e2f
1 int bneq0(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-neq0
7 * check-command: test-linearize -Wno-decl $file
8 * check-output-ignore
10 * check-output-excludes: seteq\\.
11 * check-output-contains: setne\\.