aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/mem2reg/loop02-array.c
blob: 13b0aeaf9f9ab9eaac1b5dca54082053ccb4b149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
int foo(int i[])
{
	int j = 1;
	i[0] = 6;

	do {
		if (i[0] != 6)
			i[0]++;
		i[0]++;
	} while (i[0] != j);

	return j;
}

/*
 * check-name: loop02 array
 * check-command: test-linearize -Wno-decl -fdump-ir=mem2reg $file
 * check-output-ignore
 * check-output-pattern(0,4): load\\.
 * check-output-pattern(1,3): store\\.
 */