aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/setcc-mask.c
blob: c8df10494ab8a35d13298fdfe9ba5eed321e2aab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
int foo (int a)
{
	return ((a == 0) & 1) == (a == 0);
}

/*
 * check-name: setcc-mask
 * check-command: test-linearize -Wno-decl $file
 * check-known-to-fail
 *
 * check-output-start
foo:
.L0:
	<entry-point>
	ret.32      $1


 * check-output-end
 */