foo(int p,int i,int f,int * ref,int * dst,int * src)1*c85f09ccSJohn Levon void foo(int p, int i, int f, int *ref, int *dst, int *src)
2*c85f09ccSJohn Levon {
3*c85f09ccSJohn Levon 	if (p)
4*c85f09ccSJohn Levon 		f = ref[i];
5*c85f09ccSJohn Levon 	if (f)
6*c85f09ccSJohn Levon 		dst[i] = src[i];
7*c85f09ccSJohn Levon }
8*c85f09ccSJohn Levon 
9*c85f09ccSJohn Levon /*
10*c85f09ccSJohn Levon  * check-name: cse-cmp-next
11*c85f09ccSJohn Levon  * check-command: test-linearize -Wno-decl $file
12*c85f09ccSJohn Levon  *
13*c85f09ccSJohn Levon  * check-output-ignore
14*c85f09ccSJohn Levon  * check-output-pattern(1,2): mul\\.
15*c85f09ccSJohn Levon  */
16