diff options
author | cesar <cesar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-03-10 22:50:40 +0000 |
---|---|---|
committer | cesar <cesar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-03-10 22:50:40 +0000 |
commit | cc189a619c23f9b16bb57b5d6ad8d5640c20b3b1 (patch) | |
tree | f39b022629e26214fb93fa3d767698ce8832b91e /libgomp/testsuite | |
parent | 281687d66fcc8986961f3a30de5a4f7acd0deccb (diff) | |
download | gcc-cc189a619c23f9b16bb57b5d6ad8d5640c20b3b1.tar.gz |
libgomp/
PR testsuite/70009
* testsuite/libgomp.oacc-c-c++-common/vprop.c: Make test data signed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234124 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp/testsuite')
-rw-r--r-- | libgomp/testsuite/libgomp.oacc-c-c++-common/vprop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgomp/testsuite/libgomp.oacc-c-c++-common/vprop.c b/libgomp/testsuite/libgomp.oacc-c-c++-common/vprop.c index a9b63dcea72..17b9568a16c 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--) \ |