1 /* { dg-do compile } */
2 /* { dg-options "-fno-tree-sra" } */
3
4 _Complex float foo(void)
5 {
6 _Complex float a[64] = {};
7 _Complex float x;
8 x = a[1];
9 return x;
10 }
11