aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/expand/constant-init-array.c
blob: 94949be5424459c4df693967f0216d98ecfdfa91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int test_array(int i)
{
	static const int a[3] = { 1, 2, 3, };

	return a[1];
}

/*
 * check-name: constant-init-array
 * check-command: test-linearize -Wno-decl -fdump-ir $file
 *
 * check-output-ignore
 * check-output-excludes: phisrc\\..*return.*\\$2
 * check-output-contains: load\\.
 */