2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / local-alloc1.C
blob6c4b6cd5749ee40e468791a6cc9e23b2e3175510
1 // { dg-do assemble  }
2 // { dg-options "-O0 -fpic" }
3 // Origin: Jakub Jelinek <jakub@redhat.com>
4 // Skip if target: cris-*-elf* cris-*-aout* mmix-*-*
6 struct bar {
7   bar() {}
8   double x[3];
9 };
11 static bar y[4];
13 void foo(int z)
15   bar w;
16   y[z] = w;