diff options
author | Paul Robinson <paul_robinson@playstation.sony.com> | 2016-02-10 02:08:24 +0000 |
---|---|---|
committer | Paul Robinson <paul_robinson@playstation.sony.com> | 2016-02-10 02:08:24 +0000 |
commit | 4abe94fb6b215d5342816f189fa18988e829441a (patch) | |
tree | 20f99d9a4ef5bbdc16fb63bf1f83fe75b4eba384 | |
parent | 8d62f5c7ce6d73ee2e02b72d9567a05d5680eba2 (diff) | |
download | llvm-4abe94fb6b215d5342816f189fa18988e829441a.zip llvm-4abe94fb6b215d5342816f189fa18988e829441a.tar.gz llvm-4abe94fb6b215d5342816f189fa18988e829441a.tar.bz2 |
Get rid of another SAME-NOT. FileCheck does not have this suffix.
Differential Revision: http://reviews.llvm.org/D17062
llvm-svn: 260348
-rw-r--r-- | clang/test/Driver/cuda-options.cu | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/Driver/cuda-options.cu b/clang/test/Driver/cuda-options.cu index 9030090..d673ab2 100644 --- a/clang/test/Driver/cuda-options.cu +++ b/clang/test/Driver/cuda-options.cu @@ -105,7 +105,7 @@ // Match no device-side compilation. // NODEVICE-NOT: "-cc1" "-triple" "nvptx64-nvidia-cuda" -// NODEVICE-SAME-NOT: "-fcuda-is-device" +// NODEVICE-NOT: "-fcuda-is-device" // INCLUDES-DEVICE:fatbinary // INCLUDES-DEVICE-DAG: "--create" "[[FATBINARY:[^"]*]]" @@ -115,13 +115,13 @@ // Match host-side preprocessor job with -save-temps. // HOST-SAVE: "-cc1" "-triple" "x86_64--linux-gnu" // HOST-SAVE-SAME: "-aux-triple" "nvptx64-nvidia-cuda" -// HOST-SAVE-SAME-NOT: "-fcuda-is-device" +// HOST-SAVE-NOT: "-fcuda-is-device" // HOST-SAVE-SAME: "-x" "cuda" // Match host-side compilation. // HOST: "-cc1" "-triple" "x86_64--linux-gnu" // HOST-SAME: "-aux-triple" "nvptx64-nvidia-cuda" -// HOST-SAME-NOT: "-fcuda-is-device" +// HOST-NOT: "-fcuda-is-device" // HOST-SAME: "-o" "[[HOSTOUTPUT:[^"]*]]" // HOST-NOSAVE-SAME: "-x" "cuda" // HOST-SAVE-SAME: "-x" "cuda-cpp-output" @@ -135,7 +135,7 @@ // Match no host compilation. // NOHOST-NOT: "-cc1" "-triple" -// NOHOST-SAME-NOT: "-x" "cuda" +// NOHOST-NOT: "-x" "cuda" // Match linker. // LINK: "{{.*}}{{ld|link}}{{(.exe)?}}" |