1*1f5207b7SJohn Levon void foo(int a, int *b, unsigned int g);
foo(int a,int * b,unsigned int g)2*1f5207b7SJohn Levon void foo(int a, int *b, unsigned int g)
3*1f5207b7SJohn Levon {
4*1f5207b7SJohn Levon 	int d = 0;
5*1f5207b7SJohn Levon 
6*1f5207b7SJohn Levon 	if ((!a || *b) && g)
7*1f5207b7SJohn Levon 		d = 16;
8*1f5207b7SJohn Levon 	else
9*1f5207b7SJohn Levon 		d = 8;
10*1f5207b7SJohn Levon }
11*1f5207b7SJohn Levon 
12*1f5207b7SJohn Levon int bar(void);
bar(void)13*1f5207b7SJohn Levon int bar(void)
14*1f5207b7SJohn Levon {
15*1f5207b7SJohn Levon 	int i;
16*1f5207b7SJohn Levon 	for (i = 0; i; i--)
17*1f5207b7SJohn Levon 		;
18*1f5207b7SJohn Levon 	return 0;
19*1f5207b7SJohn Levon }
20*1f5207b7SJohn Levon 
21*1f5207b7SJohn Levon /*
22*1f5207b7SJohn Levon  * check-name: kill-phi-node
23*1f5207b7SJohn Levon  * check-command: test-linearize $file
24*1f5207b7SJohn Levon  *
25*1f5207b7SJohn Levon  * check-output-ignore
26*1f5207b7SJohn Levon  * check-output-excludes: phisrc\\.
27*1f5207b7SJohn Levon  */
28