foo(int * p,int i)1*c85f09ccSJohn Levon static int foo(int *p, int i)
2*c85f09ccSJohn Levon {
3*c85f09ccSJohn Levon 	int a = p[i];
4*c85f09ccSJohn Levon 	int b = p[i];
5*c85f09ccSJohn Levon 	return (a - b);
6*c85f09ccSJohn Levon }
7*c85f09ccSJohn Levon 
8*c85f09ccSJohn Levon /*
9*c85f09ccSJohn Levon  * check-name: load-converted
10*c85f09ccSJohn Levon  * check-command: test-linearize -Wno-decl $file
11*c85f09ccSJohn Levon  *
12*c85f09ccSJohn Levon  * check-output-ignore
13*c85f09ccSJohn Levon  * check-output-excludes: add\\.
14*c85f09ccSJohn Levon  */
15