1int foo (int a)
2{
3	return ((a == 0) & 1) == (a == 0);
4}
5
6/*
7 * check-name: setcc-mask
8 * check-command: test-linearize -Wno-decl $file
9 *
10 * check-output-start
11foo:
12.L0:
13	<entry-point>
14	ret.32      $1
15
16
17 * check-output-end
18 */
19