mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-20 02:29:11 +00:00
16 lines
490 B
C
16 lines
490 B
C
/* Verify OpenACC 'firstprivate' mappings. */
|
|
|
|
/* { dg-additional-options "-Wno-psabi" } as apparently we're doing funny
|
|
things with vector arguments. */
|
|
|
|
/* PR middle-end/48591 */
|
|
/* PR other/71064 */
|
|
/* Set to 0 for offloading targets not supporting long double. */
|
|
#if defined(ACC_DEVICE_TYPE_nvidia) || defined(ACC_DEVICE_TYPE_radeon)
|
|
# define DO_LONG_DOUBLE 0
|
|
#else
|
|
# define DO_LONG_DOUBLE 1
|
|
#endif
|
|
|
|
#include "../../../gcc/testsuite/c-c++-common/goacc/firstprivate-mappings-1.c"
|