diff options
author | Cesar Philippidis <cesar@codesourcery.com> | 2016-03-10 14:50:40 -0800 |
---|---|---|
committer | Cesar Philippidis <cesar@gcc.gnu.org> | 2016-03-10 14:50:40 -0800 |
commit | f6c1032d03cd45af05f427a3b33bc12e88c44c3a (patch) | |
tree | f39b022629e26214fb93fa3d767698ce8832b91e | |
parent | 2ed21e590fa36e84cf8c7735cf1417459b34d538 (diff) | |
download | gcc-f6c1032d03cd45af05f427a3b33bc12e88c44c3a.zip gcc-f6c1032d03cd45af05f427a3b33bc12e88c44c3a.tar.gz gcc-f6c1032d03cd45af05f427a3b33bc12e88c44c3a.tar.bz2 |
re PR testsuite/70009 (test case libgomp.oacc-c-c++-common/vprop.c fails starting with its introduction in r233607)
libgomp/
PR testsuite/70009
* testsuite/libgomp.oacc-c-c++-common/vprop.c: Make test data signed.
From-SVN: r234124
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/testsuite/libgomp.oacc-c-c++-common/vprop.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 70db898..7293e69 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2016-03-10 Cesar Philippidis <cesar@codesourcery.com> + + PR testsuite/70009 + * testsuite/libgomp.oacc-c-c++-common/vprop.c: Make test data signed. + 2016-03-09 Tom de Vries <tom@codesourcery.com> * testsuite/libgomp.oacc-fortran/kernels-loop-2.f95: New test. diff --git a/libgomp/testsuite/libgomp.oacc-c-c++-common/vprop.c b/libgomp/testsuite/libgomp.oacc-c-c++-common/vprop.c index a9b63dc..17b9568 100644 --- a/libgomp/testsuite/libgomp.oacc-c-c++-common/vprop.c +++ b/libgomp/testsuite/libgomp.oacc-c-c++-common/vprop.c @@ -4,8 +4,8 @@ void \ test_##type () \ { \ - type b[100]; \ - type i, j, x = -1, y = -1; \ + signed type b[100]; \ + signed type i, j, x = -1, y = -1; \ \ _Pragma("acc parallel loop copyout (b)") \ for (j = 0; j > -5; j--) \ |