This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[testsuite] (checked in) remove xfail from gcc.dg/uninit-[49].c


Remove dg-bogus test directives from two tests that no longer gets bogus
warnings.  Diego fixed this recently and OKd these changes in the PR.
Tested on powerpc64-linux with -m32 and -m64, checked in on mainline.

20005-05-24  Janis Johnson  <janis187@us.ibm.com>

	PR tree-optimization/19833
	* gcc.dg/uninit-4.c: Remove xfail.
	* gcc.dg/uninit-9.c: Ditto.

Index: gcc.dg/uninit-4.c
===================================================================
RCS file: /opt/gcc-cvs/gcc/gcc/testsuite/gcc.dg/uninit-4.c,v
retrieving revision 1.5
diff -u -p -r1.5 uninit-4.c
--- gcc.dg/uninit-4.c	9 Feb 2005 00:17:32 -0000	1.5
+++ gcc.dg/uninit-4.c	24 May 2005 23:35:17 -0000
@@ -23,7 +23,7 @@ extern struct operation cpp_lex (void);
 void
 cpp_parse_expr (void)
 {
-  int rprio; /* { dg-bogus "rprio" "uninitialized variable warning PR19833" { xfail { powerpc*-*-* && lp64 } } } */
+  int rprio; /* { dg-bogus "rprio" "uninitialized variable warning PR19833" } */
   struct operation op;
 
   for (;;)
Index: gcc.dg/uninit-9.c
===================================================================
RCS file: /opt/gcc-cvs/gcc/gcc/testsuite/gcc.dg/uninit-9.c,v
retrieving revision 1.4
diff -u -p -r1.4 uninit-9.c
--- gcc.dg/uninit-9.c	17 Dec 2004 22:20:33 -0000	1.4
+++ gcc.dg/uninit-9.c	24 May 2005 23:35:27 -0000
@@ -23,7 +23,7 @@ func(struct foo *list, int count)
 {
     int n_clobbers = 0;
     int i;
-    struct foo **clob_list;   /* { dg-bogus "clob_list" "uninitialized variable warning" { xfail *-*-* } } */
+    struct foo **clob_list;   /* { dg-bogus "clob_list" "uninitialized variable warning" } */
 
     if(list[0].type == PARALLEL)
     {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]