loop-dim-default.c: Skip on hppa*-*-*.
* testsuite/libgomp.oacc-c-c++-common/loop-dim-default.c: Skip on hppa*-*-*. * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c: Don't include complex.h on hppa*-*-hpux*. * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-flt.c: Likewise. From-SVN: r245292
This commit is contained in:
parent
052340161e
commit
5896a41da8
@ -1,3 +1,11 @@
|
||||
2017-02-08 John David Anglin <danglin@gcc.gnu.org>
|
||||
|
||||
* testsuite/libgomp.oacc-c-c++-common/loop-dim-default.c: Skip on
|
||||
hppa*-*-*.
|
||||
* testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c: Don't
|
||||
include complex.h on hppa*-*-hpux*.
|
||||
* testsuite/libgomp.oacc-c-c++-common/reduction-cplx-flt.c: Likewise.
|
||||
|
||||
2017-02-02 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* plugin/plugin-nvptx.c (nvptx_exec): Make it static.
|
||||
|
@ -1,6 +1,7 @@
|
||||
/* This code uses nvptx inline assembly guarded with acc_on_device, which is
|
||||
not optimized away at -O0, and then confuses the target assembler.
|
||||
{ dg-skip-if "" { *-*-* } { "-O0" } { "" } } */
|
||||
{ dg-skip-if "" { hppa*-*-* } { "*" } { "" } } */
|
||||
/* { dg-additional-options "-fopenacc-dim=16:16" } */
|
||||
|
||||
#include <openacc.h>
|
||||
|
@ -1,5 +1,7 @@
|
||||
|
||||
#if !defined(__hppa__) || !defined(__hpux__)
|
||||
#include <complex.h>
|
||||
#endif
|
||||
|
||||
/* Double float has 53 bits of fraction. */
|
||||
#define FRAC (1.0 / (1LL << 48))
|
||||
|
@ -1,5 +1,7 @@
|
||||
|
||||
#if !defined(__hppa__) || !defined(__hpux__)
|
||||
#include <complex.h>
|
||||
#endif
|
||||
|
||||
/* Single float has 23 bits of fraction. */
|
||||
#define FRAC (1.0f / (1 << 20))
|
||||
|
Loading…
Reference in New Issue
Block a user