xref: /illumos-gate/usr/src/tools/smatch/src/validation/optim/select-zero.c (revision 2a8bcb4efb45d99ac41c94a75c396b362c414f7f)
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