1*c85f09ccSJohn Levon static int a[];
2*c85f09ccSJohn Levon 
foo(void)3*c85f09ccSJohn Levon static void foo(void)
4*c85f09ccSJohn Levon {
5*c85f09ccSJohn Levon 	int *c = &a[1];
6*c85f09ccSJohn Levon 	*c = *c = 0;
7*c85f09ccSJohn Levon }
8*c85f09ccSJohn Levon 
9*c85f09ccSJohn Levon /*
10*c85f09ccSJohn Levon  * check-name: store-dominated
11*c85f09ccSJohn Levon  * check-command: test-linearize $file
12*c85f09ccSJohn Levon  *
13*c85f09ccSJohn Levon  * check-output-ignore
14*c85f09ccSJohn Levon  * check-output-excludes: add\\.
15*c85f09ccSJohn Levon  */
16