OSDN Git Service

PR tree-optimization/40542
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / pr31041.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
3
4 #include <stdarg.h>
5 #include "tree-vect.h"
6
7 struct UNewTrie
8 {
9   int index[(0x110000 >> 1)];
10 };
11 typedef struct UNewTrie UNewTrie;
12 utrie_open_3_4 ()
13 {
14   UNewTrie *trie;
15   int i, j;
16     {
17       i = 0;
18       do
19         {
20           trie->index[i++] = j;
21           j += 1;
22         }
23       while (i < 5);
24     }
25 }
26 /* { dg-final { cleanup-tree-dump "vect" } } */