OSDN Git Service

PR tree-optimization/40238
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / pr37730.c
1 /* PR middle-end/37730 */
2 /* { dg-do compile } */
3
4 void
5 add_opush (void)
6 {
7   unsigned char formats[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0xff };
8   void *dtds[sizeof (formats)];
9   unsigned int i;
10   unsigned char dtd = 0x08;
11   for (i = 0; i < sizeof (formats); i++)
12     dtds[i] = &dtd;
13   sdp_seq_alloc (dtds);
14 }
15
16 /* { dg-final { cleanup-tree-dump "vect" } } */