diff options
author | Tom de Vries <tdevries@suse.de> | 2019-01-07 08:09:49 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2019-01-07 08:09:49 +0000 |
commit | 43493c97a6e8ee3b1e52e3983ac255722cdcfdd4 (patch) | |
tree | 8d757d9040ae8c81afd4c2afc3c09510e2ec6e7b | |
parent | 6e373d1369491dffbdd3d2336d07e086caafb380 (diff) | |
download | gcc-43493c97a6e8ee3b1e52e3983ac255722cdcfdd4.zip gcc-43493c97a6e8ee3b1e52e3983ac255722cdcfdd4.tar.gz gcc-43493c97a6e8ee3b1e52e3983ac255722cdcfdd4.tar.bz2 |
[nvptx] Fix libgomp.oacc-c-c++-common/vector-length-128-3.c
The vector-length-128-3.c test-case uses GOMP_OPENACC_DIM=-:-:128, but '-' is
not yet supported on trunk. Use GOMP_OPENACC_DIM=::128 instead.
2019-01-07 Tom de Vries <tdevries@suse.de>
* testsuite/libgomp.oacc-c-c++-common/vector-length-128-3.c: Fix
GOMP_OPENACC_DIM argument.
From-SVN: r267624
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-128-3.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 021d01b..120f087 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2019-01-07 Tom de Vries <tdevries@suse.de> + + * testsuite/libgomp.oacc-c-c++-common/vector-length-128-3.c: Fix + GOMP_OPENACC_DIM argument. + 2019-01-03 Tom de Vries <tdevries@suse.de> * testsuite/libgomp.oacc-c-c++-common/vector-length-128-1.c: New test. diff --git a/libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-128-3.c b/libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-128-3.c index c403e74..59be37a 100644 --- a/libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-128-3.c +++ b/libgomp/testsuite/libgomp.oacc-c-c++-common/vector-length-128-3.c @@ -2,7 +2,7 @@ /* { dg-additional-options "-foffload=-fdump-tree-oaccdevlow" } */ /* We default to warp size 32 for the vector length, so the GOMP_OPENACC_DIM has no effect. */ -/* { dg-set-target-env-var "GOMP_OPENACC_DIM" "-:-:128" } */ +/* { dg-set-target-env-var "GOMP_OPENACC_DIM" "::128" } */ /* { dg-set-target-env-var "GOMP_DEBUG" "1" } */ |