xref: /illumos-gate/usr/src/tools/smatch/src/validation/optim/bool-context.c (revision a61ed2ce7a86a4d6428f2a83eb4739fae945447e)
1 #define bool _Bool
2 
3 bool bool_ior(int a, int b) { return a || b; }
4 bool bool_and(int a, int b) { return a && b; }
5 
6 /*
7  * check-name: bool-context
8  * check-command: test-linearize -Wno-decl $file
9  * check-output-ignore
10  *
11  * check-output-pattern(4): setne\\..* %arg[12]
12  */
13