mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
13 lines
275 B
C
13 lines
275 B
C
/* { dg-do compile } */
|
|
/* We don't expect this to work with optimizations disabled.
|
|
{ dg-skip-if "" { *-*-* } { "-O0" } { "" } } */
|
|
|
|
#include <openacc.h>
|
|
|
|
int Foo (acc_device_t x)
|
|
{
|
|
return acc_on_device (x);
|
|
}
|
|
|
|
/* { dg-final { scan-assembler-not "acc_on_device" } } */
|