xref: /illumos-gate/usr/src/tools/smatch/src/validation/optim/select-zero.c (revision f52943a93040563107b95bccb9db87d9971ef47d)
1 static int sel0(int a)
2 {
3 	if (a)
4 		return 0;
5 	else
6 		return a;
7 }
8 
9 /*
10  * check-name: select-zero
11  * check-command: test-linearize $file
12  *
13  * check-output-ignore
14  * check-output-contains: ret.32 *\\$0
15  * check-output-excludes: select\\.
16  */
17