------- Comment #2 from tbm at cyrius dot com  2007-10-22 07:22 -------
/* Testcase by Martin Michlmayr <[EMAIL PROTECTED]> */

typedef struct z_key
{
  int key;
  int mask;
} z_key;
typedef struct picture_size
{
  z_key key;
}
picture_size;
void picture_size_new (picture_size *ps)
{
  z_key key;
  ps->key = key;
}
void picture_sizes_load_default (picture_size *ps)
{
  int i;
  for (i = 0; i < 5; ++i)
    picture_size_new (ps);
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33856

Reply via email to