OSDN Git Service

2012-02-28 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / pr40328.c
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