diff options
author | Justin Lebar <jlebar@google.com> | 2016-03-30 23:45:38 +0000 |
---|---|---|
committer | Justin Lebar <jlebar@google.com> | 2016-03-30 23:45:38 +0000 |
commit | 19b648eae3bb85e30d08665305fb506cbff7626a (patch) | |
tree | 735d281907e3682bb57a296148c5bcb2afb27c75 /clang/test/CodeGenCUDA | |
parent | ec4e166a5ab37ca4e7c77b087ffb721cc13258b2 (diff) | |
download | bcm5719-llvm-19b648eae3bb85e30d08665305fb506cbff7626a.tar.gz bcm5719-llvm-19b648eae3bb85e30d08665305fb506cbff7626a.zip |
[CUDA] Add -disable-llvm-passes to CodeGenCUDA/link-device-bitcode.cu. NFC
We already have this flag in most of the file, but we need it everywhere
else, to disable the NVVMReflect pass, which we're explicitly checking
doesn't run here. (Upcoming changes to llvm will cause it to be run.)
llvm-svn: 264969
Diffstat (limited to 'clang/test/CodeGenCUDA')
-rw-r--r-- | clang/test/CodeGenCUDA/link-device-bitcode.cu | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGenCUDA/link-device-bitcode.cu b/clang/test/CodeGenCUDA/link-device-bitcode.cu index de3d39c20b4..869fcb1bc93 100644 --- a/clang/test/CodeGenCUDA/link-device-bitcode.cu +++ b/clang/test/CodeGenCUDA/link-device-bitcode.cu @@ -4,10 +4,10 @@ // REQUIRES: nvptx-registered-target // // Prepare bitcode file to link with -// RUN: %clang_cc1 -triple nvptx-unknown-cuda -emit-llvm-bc -o %t.bc \ -// RUN: %S/Inputs/device-code.ll -// RUN: %clang_cc1 -triple nvptx-unknown-cuda -emit-llvm-bc -o %t-2.bc \ -// RUN: %S/Inputs/device-code-2.ll +// RUN: %clang_cc1 -triple nvptx-unknown-cuda -emit-llvm-bc \ +// RUN: -disable-llvm-passes -o %t.bc %S/Inputs/device-code.ll +// RUN: %clang_cc1 -triple nvptx-unknown-cuda -emit-llvm-bc \ +// RUN: -disable-llvm-passes -o %t-2.bc %S/Inputs/device-code-2.ll // // Make sure function in device-code gets linked in and internalized. // RUN: %clang_cc1 -triple nvptx-unknown-cuda -fcuda-is-device \ |