blob: 08a2e1769d9d34263fe8ce1bed1936102f15a0da [file] [log] [blame]
/* { dg-additional-options "-std=gnu89" } */
struct
{
double a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t;
} foo, bar;
foobar ()
{
foo = bar;
xxx (&foo, &bar);
}
main ()
{
bar.g = 1.0;
foo.g = 2.0;
foobar ();
printf ("%lf\n", foo.g);
}