diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2018-09-25 18:31:56 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2018-09-25 18:31:56 +0000 |
commit | 3dfc9934375c0a3921c5275010e22ae58ddff16b (patch) | |
tree | 16ff72656f42fb395257bf6e317e2f11806b73b4 /clang/test/Driver/openmp-offload-gpu.c | |
parent | 0ec3185db907b452e394c20c83612e2f77b4b3d8 (diff) | |
download | bcm5719-llvm-3dfc9934375c0a3921c5275010e22ae58ddff16b.tar.gz bcm5719-llvm-3dfc9934375c0a3921c5275010e22ae58ddff16b.zip |
Revert "[DRIVER][OFFLOAD] Do not invoke unbundler on unsupported file
types."
It reverts commit r342991 + several other commits intended to fix the
tests. Still have some failed tests, need to investigate it.
llvm-svn: 343002
Diffstat (limited to 'clang/test/Driver/openmp-offload-gpu.c')
-rw-r--r-- | clang/test/Driver/openmp-offload-gpu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/test/Driver/openmp-offload-gpu.c b/clang/test/Driver/openmp-offload-gpu.c index d3eb6bde994..e02d500c8f2 100644 --- a/clang/test/Driver/openmp-offload-gpu.c +++ b/clang/test/Driver/openmp-offload-gpu.c @@ -73,15 +73,13 @@ /// Check cubin file unbundling and usage by nvlink // RUN: touch %t.o // RUN: %clang -### -target powerpc64le-unknown-linux-gnu -fopenmp=libomp -fopenmp-targets=nvptx64-nvidia-cuda \ -// RUN: -no-canonical-prefixes -save-temps %t.o %S/Inputs/in.so 2>&1 \ +// RUN: -no-canonical-prefixes -save-temps %t.o 2>&1 \ // RUN: | FileCheck -check-prefix=CHK-CUBIN-UNBUNDLING-NVLINK %s /// Use DAG to ensure that cubin file has been unbundled. -// CHK-CUBIN-UNBUNDLING-NVLINK-NOT: clang-offload-bundler{{.*}}" "-type=o"{{.*}}in.so // CHK-CUBIN-UNBUNDLING-NVLINK-DAG: nvlink{{.*}}" {{.*}}"[[CUBIN:.*\.cubin]]" // CHK-CUBIN-UNBUNDLING-NVLINK-DAG: clang-offload-bundler{{.*}}" "-type=o" {{.*}}"-outputs={{.*}}[[CUBIN]] // CHK-CUBIN-UNBUNDLING-NVLINK-DAG-SAME: "-unbundle" -// CHK-CUBIN-UNBUNDLING-NVLINK-NOT: clang-offload-bundler{{.*}}" "-type=o"{{.*}}in.so /// ########################################################################### |