ior(int a)1*1f5207b7SJohn Levon static int ior(int a) { return a || a; }
and(int a)2*1f5207b7SJohn Levon static int and(int a) { return a && a; }
3*1f5207b7SJohn Levon 
4*1f5207b7SJohn Levon /*
5*1f5207b7SJohn Levon  * check-name: bool-same-args
6*1f5207b7SJohn Levon  * check-command: test-linearize $file
7*1f5207b7SJohn Levon  * check-output-ignore
8*1f5207b7SJohn Levon  *
9*1f5207b7SJohn Levon  * check-output-excludes: or-bool\\.
10*1f5207b7SJohn Levon  * check-output-excludes: and-bool\\.
11*1f5207b7SJohn Levon  * check-output-contains: setne\\.
12*1f5207b7SJohn Levon  */
13