mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-13 16:33:02 +00:00
16 lines
225 B
C
16 lines
225 B
C
/* { dg-do run } */
|
|
|
|
#include <openacc.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
acc_init (acc_device_host);
|
|
|
|
acc_shutdown (acc_device_not_host);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-shouldfail "libgomp: device 4(4) is initialized" } */
|