aboutsummaryrefslogtreecommitdiff
path: root/flang/test/Driver/omp-driver-offload.f90
diff options
context:
space:
mode:
Diffstat (limited to 'flang/test/Driver/omp-driver-offload.f90')
-rw-r--r--flang/test/Driver/omp-driver-offload.f9026
1 files changed, 20 insertions, 6 deletions
diff --git a/flang/test/Driver/omp-driver-offload.f90 b/flang/test/Driver/omp-driver-offload.f90
index b45ed70..9b62699 100644
--- a/flang/test/Driver/omp-driver-offload.f90
+++ b/flang/test/Driver/omp-driver-offload.f90
@@ -172,13 +172,27 @@
! Check that `-gpulibc` includes the LLVM C libraries for the GPU.
! RUN: %flang -### --target=x86_64-unknown-linux-gnu -fopenmp \
-! RUN: --offload-arch=gfx90a --offload-arch=sm_52 \
+! RUN: --offload-arch=sm_52 \
! RUN: -gpulibc %s 2>&1 \
-! RUN: | FileCheck --check-prefix=LIBC-GPU %s
-! LIBC-GPU: "-lcgpu"{{.*}}"-lmgpu"
+! RUN: | FileCheck --check-prefix=LIBC-GPU-NVPTX %s
+! LIBC-GPU-NVPTX-DAG: "-lcgpu-nvptx"
+! LIBC-GPU-NVPTX-DAG: "-lmgpu-nvptx"
! RUN: %flang -### --target=x86_64-unknown-linux-gnu -fopenmp \
-! RUN: --offload-arch=gfx90a --offload-arch=sm_52 \
+! RUN: --offload-arch=sm_52 \
! RUN: -nogpulibc %s 2>&1 \
-! RUN: | FileCheck --check-prefix=NO-LIBC-GPU %s
-! NO-LIBC-GPU-NOT: "-lcgpu"{{.*}}"-lmgpu"
+! RUN: | FileCheck --check-prefix=NO-LIBC-GPU-NVPTX %s
+! NO-LIBC-GPU-NVPTX-NOT: "-lcgpu-nvptx"
+
+! RUN: %flang -### --target=x86_64-unknown-linux-gnu -fopenmp \
+! RUN: --offload-arch=gfx90a \
+! RUN: -gpulibc %s 2>&1 \
+! RUN: | FileCheck --check-prefix=LIBC-GPU-AMDGPU %s
+! LIBC-GPU-AMDGPU-DAG: "-lcgpu-amdgpu"
+! LIBC-GPU-AMDGPU-DAG: "-lmgpu-amdgpu"
+
+! RUN: %flang -### --target=x86_64-unknown-linux-gnu -fopenmp \
+! RUN: --offload-arch=gfx90a \
+! RUN: -nogpulibc %s 2>&1 \
+! RUN: | FileCheck --check-prefix=NO-LIBC-GPU-AMDGPU %s
+! NO-LIBC-GPU-AMDGPU-NOT: "-lcgpu-amdgpu"