sel0(int a)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