Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / openmp / libomptarget / test / mapping / present / target_exit_data_delete.c
blob28f3cf1872ded706139803b6de411994dd7323e4
1 // RUN: %libomptarget-compile-generic
2 // RUN: %libomptarget-run-fail-generic 2>&1 \
3 // RUN: | %fcheck-generic
5 #include <stdio.h>
7 int main() {
8 int i;
10 // CHECK: addr=0x[[#%x,HOST_ADDR:]], size=[[#%u,SIZE:]]
11 fprintf(stderr, "addr=%p, size=%ld\n", &i, sizeof i);
13 // CHECK-NOT: Libomptarget
14 #pragma omp target enter data map(alloc : i)
15 #pragma omp target exit data map(present, delete : i)
17 // CHECK: i was present
18 fprintf(stderr, "i was present\n");
20 // CHECK: Libomptarget message: device mapping required by 'present' map type modifier does not exist for host address 0x{{0*}}[[#HOST_ADDR]] ([[#SIZE]] bytes)
21 // CHECK: Libomptarget fatal error 1: failure of target construct while offloading is mandatory
22 #pragma omp target exit data map(present, delete : i)
24 // CHECK-NOT: i was present
25 fprintf(stderr, "i was present\n");
27 return 0;