This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug testsuite/31341] testsuite pr31041.c fails conflicting with <stdint.h>
- From: "tprince at computer dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 28 Feb 2008 21:07:20 -0000
- Subject: [Bug testsuite/31341] testsuite pr31041.c fails conflicting with <stdint.h>
- References: <bug-31341-33@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #5 from tprince at computer dot org 2008-02-28 21:07 -------
(In reply to comment #3)
> 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
>
Yes, it passes now, as I reported on bugzilla. Will you submit the patch?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31341