diff options
author | Tom de Vries <tdevries@suse.de> | 2020-10-14 15:51:24 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2020-10-15 10:36:36 +0200 |
commit | c72720e942f23bd18116ee3ec20ce1672cb3a7c1 (patch) | |
tree | 773f4579913ae166c563acc9dfa1bb72c634ed65 | |
parent | 10744da3452dac48cfa54d4480c269aac56421fa (diff) | |
download | gcc-c72720e942f23bd18116ee3ec20ce1672cb3a7c1.zip gcc-c72720e942f23bd18116ee3ec20ce1672cb3a7c1.tar.gz gcc-c72720e942f23bd18116ee3ec20ce1672cb3a7c1.tar.bz2 |
[nvptx, testsuite] Remove xpassing xfails for ptxas crashes
There's a couple of nvptx xfails that are related to ptxas crashes,
which are xpassing for me (with ptxas from cuda 9.1).
I've tested these on a range of cudas, from 5.0 to 11.1 and did not
manage to reproduce the fails.
Remove the xfails. Tested on nvptx.
gcc/testsuite/ChangeLog:
2020-10-15 Tom de Vries <tdevries@suse.de>
* gcc.c-torture/compile/pr42717.c: Remove nvptx xfail.
* gcc.c-torture/compile/pr61684.c: Same.
* gcc.c-torture/execute/pr20601-1.c: Same.
* gcc.c-torture/execute/pr52129.c: Same.
* gcc.c-torture/execute/pr59221.c: Same.
* gcc.dg/pr68671.c: Same.
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/pr42717.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/pr61684.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/pr20601-1.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/pr52129.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/pr59221.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/pr68671.c | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr42717.c b/gcc/testsuite/gcc.c-torture/compile/pr42717.c index 7f6fb9d..4fe6f93 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr42717.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr42717.c @@ -1,4 +1,3 @@ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O0" } { "" } } */ static signed char foo (signed char si1, unsigned char si2) { diff --git a/gcc/testsuite/gcc.c-torture/compile/pr61684.c b/gcc/testsuite/gcc.c-torture/compile/pr61684.c index 9a7b52f..f5b53b7 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr61684.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr61684.c @@ -1,5 +1,4 @@ /* PR tree-optimization/61684 */ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "*" } { "-O0" "-O1" "-Os" } } */ int a, c; static int *b = 0; diff --git a/gcc/testsuite/gcc.c-torture/execute/pr20601-1.c b/gcc/testsuite/gcc.c-torture/execute/pr20601-1.c index 6eab1ef..7c13c91 100644 --- a/gcc/testsuite/gcc.c-torture/execute/pr20601-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/pr20601-1.c @@ -1,5 +1,4 @@ /* PR tree-optimization/20601 */ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O1" } { "" } } */ extern void abort (void); extern void exit (int); diff --git a/gcc/testsuite/gcc.c-torture/execute/pr52129.c b/gcc/testsuite/gcc.c-torture/execute/pr52129.c index ab43ca6..a60bfa8 100644 --- a/gcc/testsuite/gcc.c-torture/execute/pr52129.c +++ b/gcc/testsuite/gcc.c-torture/execute/pr52129.c @@ -1,5 +1,4 @@ /* PR target/52129 */ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O1" } { "" } } */ extern void abort (void); struct S { void *p; unsigned int q; }; diff --git a/gcc/testsuite/gcc.c-torture/execute/pr59221.c b/gcc/testsuite/gcc.c-torture/execute/pr59221.c index b307227..0cd4259 100644 --- a/gcc/testsuite/gcc.c-torture/execute/pr59221.c +++ b/gcc/testsuite/gcc.c-torture/execute/pr59221.c @@ -1,4 +1,3 @@ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "*" } { "-O0" "-Os" } } */ int a = 1, b, d; diff --git a/gcc/testsuite/gcc.dg/pr68671.c b/gcc/testsuite/gcc.dg/pr68671.c index 9b473ca..bec4639 100644 --- a/gcc/testsuite/gcc.dg/pr68671.c +++ b/gcc/testsuite/gcc.dg/pr68671.c @@ -1,7 +1,6 @@ /* PR tree-optimization/68671 */ /* { dg-do run } */ /* { dg-options " -O2 -fno-tree-dce" } */ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } } */ volatile int a = -1; volatile int b; |