aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/kill-phi-node.c
blob: 88de9f9623fda0277eb7bdb70ea4695f23fa70dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
void foo(int a, int *b, unsigned int g);
void foo(int a, int *b, unsigned int g)
{
	int d = 0;

	if ((!a || *b) && g)
		d = 16;
	else
		d = 8;
}

/*
 * check-name: kill-phi-node
 * check-command: test-linearize $file
 *
 * check-output-ignore
 * check-output-excludes: phisrc\\.
 */