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