Warray-bounds.c: XFAIL test on 32-bit hppa targets.
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>
Wed, 25 Apr 2007 00:50:24 +0000 (00:50 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Wed, 25 Apr 2007 00:50:24 +0000 (00:50 +0000)
* gcc.dg/Warray-bounds.c: XFAIL test on 32-bit hppa targets.
* g++.dg/warn/Warray-bounds.C: Likewise.

From-SVN: r124136

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/warn/Warray-bounds.C
gcc/testsuite/gcc.dg/Warray-bounds.c

index cc0033e62b8d6ae109ad774e079e097296f457ae..aa19f36f36fb6b00ef8fead74af08e3d361eca74 100644 (file)
@@ -1,3 +1,8 @@
+2007-04-24  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       * gcc.dg/Warray-bounds.c: XFAIL test on 32-bit hppa targets.
+       * g++.dg/warn/Warray-bounds.C: Likewise.
+
 2007-04-24  Ian Lance Taylor  <iant@google.com>
 
        PR tree-optimizatoin/31605
index 4f7a397fcb8d246fa3d80dde3799441fd1b002d1..12b564730d11bad5ab24aa066e97dfbc448037ad 100644 (file)
@@ -1,5 +1,5 @@
 /* { dg-do compile } */
-/* { dg-skip-if "PR 31500" { hppa*-*-* } { "*" } { "" } } */
+/* { dg-xfail-if "PR 31500" { hppa*-*-* && { ! hppa*64*-*-* } } } */
 /* { dg-options "-O2 -Warray-bounds" } */
 
 int a[10];
@@ -88,5 +88,5 @@ int* f(void) {
        c.c[-1] = 0;
 
     return a;
-}
+} /* { dg-excess-errors "PR 31500" { xfail { hppa*-*-* && { ! hppa*64*-*-* } } } } */
 
index 31f6c6e7d3a132bb83433769019029bc578e4113..a73cb5f796e506cb338198cc4a8b86b7cd22c5d8 100644 (file)
@@ -1,5 +1,5 @@
 /* { dg-do compile } */
-/* { dg-skip-if "PR 31500" { hppa*-*-* } { "*" } { "" } } */
+/* { dg-xfail-if "PR 31500" { hppa*-*-* && { ! hppa*64*-*-* } } } */
 /* { dg-options "-O2 -Warray-bounds" } */
 
 int a[10];
@@ -91,5 +91,5 @@ int* f(void) {
              a[i] = 1;       /* { dg-warning "array subscript" } */
 
     return a;
-}
+} /* { dg-excess-errors "PR 31500" { xfail { hppa*-*-* && { ! hppa*64*-*-* } } } } */