mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-14 17:57:39 +01:00
Updated dependencies: * GMP 6.2.1 * ISL 0.24 * MPL 1.2.1 * MPFR 4.1.0 The dependencies were pulled in by running the ./contrib/download_prerequisites script and then manually removing the symbolic links and archives, and renaming the directories (i.e mv isl-0.24 to isl)
63 lines
960 B
C
63 lines
960 B
C
/* Check acc_is_present and acc_delete. */
|
|
|
|
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */
|
|
|
|
#include <stdlib.h>
|
|
#include <openacc.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
const int N = 256;
|
|
int i;
|
|
unsigned char *h;
|
|
void *d;
|
|
|
|
h = (unsigned char *) malloc (N);
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
h[i] = i;
|
|
}
|
|
|
|
d = acc_copyin (h, N);
|
|
|
|
if (acc_is_present (h, 1) != 1)
|
|
abort ();
|
|
|
|
if (acc_is_present (h, N + 1) != 0)
|
|
abort ();
|
|
|
|
if (acc_is_present (h + 1, N) != 0)
|
|
abort ();
|
|
|
|
if (acc_is_present (h - 1, N) != 0)
|
|
abort ();
|
|
|
|
if (acc_is_present (h - 1, N - 1) != 0)
|
|
abort ();
|
|
|
|
if (acc_is_present (h + N, 0) != 0)
|
|
abort ();
|
|
|
|
if (acc_is_present (h + N, N) != 0)
|
|
abort ();
|
|
|
|
if (acc_is_present (0, N) != 0)
|
|
abort ();
|
|
|
|
if (acc_is_present (h, 0) != 0)
|
|
abort ();
|
|
|
|
acc_delete (h, N);
|
|
|
|
if (acc_is_present (h, 1) != 0)
|
|
abort ();
|
|
|
|
free (h);
|
|
|
|
return 0;
|
|
}
|