This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Fix random failure of gcc.dg/tree-ssa/20050719-1.c
- From: Richard Guenther <rguenther at suse dot de>
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 25 Jul 2005 16:42:44 +0200 (CEST)
- Subject: [PATCH] Fix random failure of gcc.dg/tree-ssa/20050719-1.c
by adding a return 0; statement to main().
Committed as obvious.
Richard.
2005-07-25 Richard Guenther <rguenther@suse.de>
* gcc.dg/tree-ssa/20050719-1.c: Add return 0;.
Index: gcc.dg/tree-ssa/20050719-1.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.dg/tree-ssa/20050719-1.c,v
retrieving revision 1.1
diff -c -3 -p -r1.1 20050719-1.c
*** gcc.dg/tree-ssa/20050719-1.c 22 Jul 2005 13:39:18 -0000 1.1
--- gcc.dg/tree-ssa/20050719-1.c 25 Jul 2005 14:39:30 -0000
*************** useboot (void *boot)
*** 34,37 ****
--- 34,38 ----
main()
{
zap (0);
+ return 0;
}