OSDN Git Service

Fix PR tree-optimization/21520
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20020129-1.c
1 /* Test call to static variable.  */
2
3 typedef struct
4 {
5   long long a[10];
6 } A;
7   
8 void bar (A *);
9   
10 typedef int (*B)(int);
11   
12 void foo (void)
13 {
14   static A a;
15   bar (&a);
16   (*(B)&a) (1);
17 }