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]

[committed] Remove hppa xfails from gcc.dg/Warray-bounds.c and g++.dg/warn/Warray-bounds.C


Since the dataflow merge, these tests nolonger fail.  This patch
removes the xfails from the two Warray-bounds tests.

Tested on hppa-unknown-linux-gnu, hppa2.0w-hp-hpux11.11 and
hppa64-hp-hpux11.11.  Committed to trunk.

Dave
-- 
J. David Anglin                                  dave.anglin@nrc-cnrc.gc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6602)

2007-07-25  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>

	PR rtl-optimization/31500
	* gcc.dg/Warray-bounds.c: Remove hppa xfails.
	* g++.dg/warn/Warray-bounds.C: Likewise.

Index: gcc.dg/Warray-bounds.c
===================================================================
--- gcc.dg/Warray-bounds.c	(revision 126828)
+++ gcc.dg/Warray-bounds.c	(working copy)
@@ -1,5 +1,4 @@
 /* { dg-do compile } */
-/* { dg-xfail-if "PR 31500" { hppa*-*-* && { ! hppa*64*-*-* } } } */
 /* { dg-options "-O2 -Warray-bounds" } */
 
 int a[10];
@@ -91,5 +90,5 @@
              a[i] = 1;       /* { dg-warning "array subscript" } */
 
     return a;
-} /* { dg-excess-errors "PR 31500" { xfail { hppa*-*-* && { ! hppa*64*-*-* } } } } */
+}
 
Index: g++.dg/warn/Warray-bounds.C
===================================================================
--- g++.dg/warn/Warray-bounds.C	(revision 126828)
+++ g++.dg/warn/Warray-bounds.C	(working copy)
@@ -1,5 +1,4 @@
 /* { dg-do compile } */
-/* { dg-xfail-if "PR 31500" { hppa*-*-* && { ! hppa*64*-*-* } } } */
 /* { dg-options "-O2 -Warray-bounds" } */
 
 int a[10];
@@ -88,5 +87,5 @@
        c.c[-1] = 0;
 
     return a;
-} /* { dg-excess-errors "PR 31500" { xfail { hppa*-*-* && { ! hppa*64*-*-* } } } } */
+}
 


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