diff options
author | Artem Belevich <tra@google.com> | 2015-05-11 18:35:58 +0000 |
---|---|---|
committer | Artem Belevich <tra@google.com> | 2015-05-11 18:35:58 +0000 |
commit | e958275250955852cccb156d77ae712ebf110e95 (patch) | |
tree | 5e943bdfa0ddee14c1ecb63133332193c0a6b8ae /clang/test/CodeGenCUDA/device-stub.cu | |
parent | 3e2bdb464098ea29e588ace34c6d65b40709cf64 (diff) | |
download | bcm5719-llvm-e958275250955852cccb156d77ae712ebf110e95.tar.gz bcm5719-llvm-e958275250955852cccb156d77ae712ebf110e95.zip |
[cuda] Fixed test case failure on s390x
llvm-svn: 237007
Diffstat (limited to 'clang/test/CodeGenCUDA/device-stub.cu')
-rw-r--r-- | clang/test/CodeGenCUDA/device-stub.cu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCUDA/device-stub.cu b/clang/test/CodeGenCUDA/device-stub.cu index 5d050113156..7f5e159151c 100644 --- a/clang/test/CodeGenCUDA/device-stub.cu +++ b/clang/test/CodeGenCUDA/device-stub.cu @@ -4,7 +4,7 @@ // Make sure that all parts of GPU code init/cleanup are there: // * constant unnamed string with the kernel name -// CHECK: private unnamed_addr constant{{.*}}kernelfunc{{.*}}\00", align 1 +// CHECK: private unnamed_addr constant{{.*}}kernelfunc{{.*}}\00" // * constant unnamed string with GPU binary // CHECK: private unnamed_addr constant{{.*}}\00" // * constant struct that wraps GPU binary @@ -29,7 +29,7 @@ __global__ void kernelfunc(int i, int j, int k) {} // Test that we've built correct kernel launch sequence. // CHECK: define{{.*}}hostfunc // CHECK: call{{.*}}cudaConfigureCall -// CHEKC: call{{.*}}kernelfunc +// CHECK: call{{.*}}kernelfunc void hostfunc(void) { kernelfunc<<<1, 1>>>(1, 1, 1); } // Test that we've built a function to register kernels |