Refine constraint "Bk" to define_special_memory_constraint.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20040707-1.c
blob25279ae12f6a35b062379b8244e9a3f94a20c099
1 void exit (int);
3 struct s { char c1, c2; };
4 void foo (struct s s)
6 static struct s s1;
7 s1 = s;
9 int main ()
11 static struct s s2;
12 foo (s2);
13 exit (0);