mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 01:46:05 +00:00

The map with AssertingVHs has been moved into the OpenMPIRBuilder which extended their lifetime. On NVIDIA this will cause an assertion. This simply removes the AssertingVH wrapper.
12 lines
597 B
C++
12 lines
597 B
C++
// REQUIRES: nvptx-registered-target
|
|
//
|
|
// Test target codegen - host bc file has to be created first.
|
|
// RUN: %clang_cc1 -verify -fopenmp -x c++ -triple powerpc64le-unknown-unknown -fopenmp-targets=nvptx64-nvidia-cuda -emit-llvm-bc %s -o %t-ppc-host.bc
|
|
// RUN: %clang_cc1 -verify -fopenmp -x c++ -triple nvptx64-unknown-unknown -fopenmp-targets=nvptx64-nvidia-cuda %s -fopenmp-is-device -fopenmp-host-ir-file-path %t-ppc-host.bc -o %t.final
|
|
// expected-no-diagnostics
|
|
|
|
#pragma omp begin declare target
|
|
constexpr int A[] = {1,2,3,4,5};
|
|
int f(int i) { return A[i]; }
|
|
#pragma omp end declare target
|