xref: /illumos-gate/usr/src/tools/smatch/src/validation/optim/trivial-phis.c (revision 66582b606a8194f7f3ba5b3a3a6dca5b0d346361)
1 void foo(int a)
2 {
3 	while (1)
4 		a ^= 0;
5 }
6 
7 /*
8  * check-name: trivial phis
9  * check-command: test-linearize -Wno-decl $file
10  *
11  * check-output-ignore
12  * check-output-excludes: phi\\.
13  * check-output-excludes: phisrc\\.
14  */
15