* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20040726-2.c
blobce60095fd8bb9fcee9b8a6e6641c66de26358c21
1 /* { dg-do compile } */
2 /* From a failure after the global ccp pass. */
3 typedef struct
5 char n[129];
6 } A;
8 const A C = {
9 0,
13 extern const A *const B;
15 void bar(const char *);
17 void foo ()
19 bar (B->n);
22 const A *const B = &C;