Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / vect / pr37730.c
blob876f5499ea8b2af0518f8693363098143b58c78d
1 /* PR middle-end/37730 */
2 /* { dg-do compile } */
4 void
5 add_opush (void)
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);
16 /* { dg-final { cleanup-tree-dump "vect" } } */