PR target/16407
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20040707-1.c
blob6fc15cc24a7c4dae0b6b8d44fd5780654043ea32
1 struct s { char c1, c2; };
2 void foo (struct s s)
4 static struct s s1;
5 s1 = s;
7 int main ()
9 static struct s s2;
10 foo (s2);
11 exit (0);