cfgexpand: Expand comment on when non-var clobbers can show up
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr37730.c
blobfeaae960e12e93c10019291c67377d38798a7b6f
1 /* PR middle-end/37730 */
2 /* { dg-do compile } */
4 void sdp_seq_alloc (void *);
6 void
7 add_opush (void)
9 unsigned char formats[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0xff };
10 void *dtds[sizeof (formats)];
11 unsigned int i;
12 unsigned char dtd = 0x08;
13 for (i = 0; i < sizeof (formats); i++)
14 dtds[i] = &dtd;
15 sdp_seq_alloc (dtds);