OSDN Git Service

PR c++/34774
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / opt / static4.C
1 // PR 13898
2 // Make sure the two X variables get assigned unique assembler names
3 // if they are promoted to static storage.
4
5 // { dg-do compile }
6
7 int g(int i) { 
8   if (i<1) { 
9     const int x[3] = { 1,2,3 }; 
10     return x[i]; 
11   } else { 
12     const int x[3] = { 4,5,6 }; 
13     return x[i]; 
14   } 
15