17 lines · c
1// REQUIRES: amdgpu-registered-target2 3// RUN: %clang_cc1 -debug-info-kind=line-tables-only -fopenmp -triple x86_64-unknown-unknown -fopenmp-targets=amdgcn-amd-amdhsa -emit-llvm-bc %s -o %t-host.bc4 5int test() {6 int c;7 8#pragma omp target data map(tofrom: c)9{10 #pragma omp target nowait11 {12 c = 2;13 }14}15 return c;16}17