------- Comment #3 from victork at gcc dot gnu dot org 2008-02-28 09:48 ------- I have no installed cygwin, could you check if this patch fixes the failure?
Index: gcc/testsuite/gcc.dg/vect/pr31041.c =================================================================== --- gcc/testsuite/gcc.dg/vect/pr31041.c (revision 131411) +++ gcc/testsuite/gcc.dg/vect/pr31041.c (working copy) @@ -4,16 +4,15 @@ #include <stdarg.h> #include "tree-vect.h" -typedef int int32_t; struct UNewTrie { - int32_t index[(0x110000 >> 1)]; + int index[(0x110000 >> 1)]; }; typedef struct UNewTrie UNewTrie; utrie_open_3_4 () { UNewTrie *trie; - int32_t i, j; + int i, j; { i = 0; do -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31341