aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/cse-size.c
blob: 0c0c2d1425ed17c0f765e73a0e18b7acc2d5a8b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
static void foo(void)
{
	unsigned short p = 0;
	int x = 1;

	for (;;)
		if (p)
			p = x;
}

/*
 * check-name: cse-size
 * check-command: test-linearize -Wno-decl $file
 *
 * check-output-ignore
 * check-output-excludes: phi\\.
 * check-output-excludes: cbr
 */