11f5207b7SJohn Levon #define bool _Bool
21f5207b7SJohn Levon 
bool_ior(int a,int b)31f5207b7SJohn Levon bool bool_ior(int a, int b) { return a || b; }
bool_and(int a,int b)41f5207b7SJohn Levon bool bool_and(int a, int b) { return a && b; }
51f5207b7SJohn Levon 
61f5207b7SJohn Levon /*
71f5207b7SJohn Levon  * check-name: bool-context
81f5207b7SJohn Levon  * check-command: test-linearize -Wno-decl $file
91f5207b7SJohn Levon  * check-output-ignore
101f5207b7SJohn Levon  *
11*c85f09ccSJohn Levon  * check-output-pattern(4): setne\\..* %arg[12]
121f5207b7SJohn Levon  */
13