mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
2ed21e590f
commit
f6c1032d03
|
|
@ -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>
|
2016-03-09 Tom de Vries <tom@codesourcery.com>
|
||||||
|
|
||||||
* testsuite/libgomp.oacc-fortran/kernels-loop-2.f95: New test.
|
* testsuite/libgomp.oacc-fortran/kernels-loop-2.f95: New test.
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@
|
||||||
void \
|
void \
|
||||||
test_##type () \
|
test_##type () \
|
||||||
{ \
|
{ \
|
||||||
type b[100]; \
|
signed type b[100]; \
|
||||||
type i, j, x = -1, y = -1; \
|
signed type i, j, x = -1, y = -1; \
|
||||||
\
|
\
|
||||||
_Pragma("acc parallel loop copyout (b)") \
|
_Pragma("acc parallel loop copyout (b)") \
|
||||||
for (j = 0; j > -5; j--) \
|
for (j = 0; j > -5; j--) \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue