Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr28952.c
blob7305e607cfb882b33f99ddfa26f38dd6ba4b4218
1 /* { dg-do compile } */
3 /* We were ICE because we wanted to check the type of the
4 elements of a conditional before we knew it was a conditional. */
6 struct player_spaceship
8 _Bool structure[32];
9 };
10 struct player
12 struct player_spaceship spaceship;
14 struct packet_spaceship_info
16 char structure[32 + 1];
18 send_spaceship_info (void)
20 int j;
21 struct player *pplayer;
22 struct packet_spaceship_info info;
23 struct player_spaceship *ship = &pplayer->spaceship;
24 for (j = 0; j < 32; j++)
26 info.structure[j] = ship->structure[j] ? '1' : '0';
28 lsend_packet_spaceship_info (&info);
31 /* { dg-final { cleanup-tree-dump "vect" } } */