brintos

brintos / llvm-project-archived public Read only

0
0
Text · 604 B · f560086 Raw
12 lines · cpp
1// REQUIRES: nvptx-registered-target2//3// Test target codegen - host bc file has to be created first.4// RUN: %clang_cc1 -verify -fopenmp -x c++ -triple powerpc64le-unknown-unknown -fopenmp-targets=nvptx64-nvidia-cuda -emit-llvm-bc %s -o %t-ppc-host.bc5// RUN: %clang_cc1 -verify -fopenmp -x c++ -triple nvptx64-unknown-unknown -fopenmp-targets=nvptx64-nvidia-cuda %s -fopenmp-is-target-device -fopenmp-host-ir-file-path %t-ppc-host.bc -o %t.final6// expected-no-diagnostics7 8#pragma omp begin declare target9constexpr int A[] = {1,2,3,4,5};10int f(int i) { return A[i]; }11#pragma omp end declare target12