Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.dg / vect / pr31041.c
blob361b358b8790886e207bc3dd9cd2adb233d44101
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 #include <stdarg.h>
5 #include "tree-vect.h"
7 struct UNewTrie
9 int index[(0x110000 >> 1)];
11 typedef struct UNewTrie UNewTrie;
12 utrie_open_3_4 ()
14 UNewTrie *trie;
15 int i, j;
17 i = 0;
20 trie->index[i++] = j;
21 j += 1;
23 while (i < 5);
26 /* { dg-final { cleanup-tree-dump "vect" } } */