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:
John David Anglin 2017-02-09 00:22:32 +00:00
parent 052340161e
commit 5896a41da8
4 changed files with 13 additions and 0 deletions

View File

@ -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.

View File

@ -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>

View File

@ -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))

View File

@ -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))