blob: b793551ee6ee4f07f7e43d55f8f9ab6acbb94748 [file]
// RUN: %libomptarget-compile-run-and-check-generic
#include <stdio.h>
int main() {
int x = 111;
#pragma omp target data map(alloc : x) map(from : x) map(alloc : x)
{
#pragma omp target map(present, alloc : x)
x = 222;
}
printf("After tgt data: %d\n", x); // CHECK: After tgt data: 222
}