1/* { dg-do compile } */
2/* From a failure after the global ccp pass.  */
3typedef struct
4{
5  char n[129];
6} A;
7
8const A C = {
9  0,
10  0
11};
12
13extern const A *const B;
14
15void bar(const char *);
16
17void foo ()
18{
19  bar (B->n);
20}
21
22const A *const B = &C;
23