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