xref: /illumos-gate/usr/src/tools/smatch/src/validation/optim/bool-context.c (revision c85f09cc92abd00c84e58ec9f0f5d942906cb713)
1 #define bool _Bool
2 
bool_ior(int a,int b)3 bool bool_ior(int a, int b) { return a || b; }
bool_and(int a,int 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