mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-20 02:29:11 +00:00
29 lines
664 B
C
29 lines
664 B
C
/* Verify that we refuse 'acc_free', inside 'host_data', after '#pragma acc enter data create'. */
|
|
|
|
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <openacc.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
const int N = 108;
|
|
|
|
char *h = (char *) malloc (N);
|
|
#pragma acc enter data create (h[0:N - 2])
|
|
|
|
#pragma acc host_data use_device (h)
|
|
{
|
|
fprintf (stderr, "CheCKpOInT\n");
|
|
acc_free (h);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" }
|
|
{ dg-output "refusing to free device memory space at \[0-9a-fA-FxX\]+ that is still mapped at \\\[\[0-9a-fA-FxX\]+,\\\+106\\\]" }
|
|
{ dg-shouldfail "" } */
|