diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-08-15 06:47:53 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-08-15 06:47:53 +0000 |
commit | 4362261b0093730e46ffcad910e8b465cf0bb1cb (patch) | |
tree | b05fa6d247505d0ab46b16619f702532e189f698 /clang/test/CodeGenOpenCL | |
parent | 83e042a21b5392882ccc020baa9ade52851b5903 (diff) | |
download | bcm5719-llvm-4362261b0093730e46ffcad910e8b465cf0bb1cb.tar.gz bcm5719-llvm-4362261b0093730e46ffcad910e8b465cf0bb1cb.zip |
CHECK-LABEL-ify some code gen tests to improve diagnostic experience when tests fail.
llvm-svn: 188447
Diffstat (limited to 'clang/test/CodeGenOpenCL')
-rw-r--r-- | clang/test/CodeGenOpenCL/local.cl | 2 | ||||
-rw-r--r-- | clang/test/CodeGenOpenCL/opencl_types.cl | 2 | ||||
-rw-r--r-- | clang/test/CodeGenOpenCL/ptx-calls.cl | 4 | ||||
-rw-r--r-- | clang/test/CodeGenOpenCL/ptx-kernels.cl | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/CodeGenOpenCL/local.cl b/clang/test/CodeGenOpenCL/local.cl index b4bd0085dfa..852fa438f50 100644 --- a/clang/test/CodeGenOpenCL/local.cl +++ b/clang/test/CodeGenOpenCL/local.cl @@ -6,7 +6,7 @@ __kernel void foo(void) { ++i; } -// CHECK: define void @_Z3barPU3AS2i +// CHECK-LABEL: define void @_Z3barPU3AS2i __kernel void __attribute__((__overloadable__)) bar(local int *x) { *x = 5; } diff --git a/clang/test/CodeGenOpenCL/opencl_types.cl b/clang/test/CodeGenOpenCL/opencl_types.cl index b1e558db9b9..7e99fc548ec 100644 --- a/clang/test/CodeGenOpenCL/opencl_types.cl +++ b/clang/test/CodeGenOpenCL/opencl_types.cl @@ -22,7 +22,7 @@ void fnc3(image3d_t img) {} // CHECK: @fnc3(%opencl.image3d_t* void fnc4smp(sampler_t s) {} -// CHECK: define void @fnc4smp(i32 +// CHECK-LABEL: define void @fnc4smp(i32 kernel void foo(image1d_t img) { sampler_t smp = 5; diff --git a/clang/test/CodeGenOpenCL/ptx-calls.cl b/clang/test/CodeGenOpenCL/ptx-calls.cl index d9904513e51..00f2a0e4c04 100644 --- a/clang/test/CodeGenOpenCL/ptx-calls.cl +++ b/clang/test/CodeGenOpenCL/ptx-calls.cl @@ -2,12 +2,12 @@ void device_function() { } -// CHECK: define void @device_function() +// CHECK-LABEL: define void @device_function() __kernel void kernel_function() { device_function(); } -// CHECK: define void @kernel_function() +// CHECK-LABEL: define void @kernel_function() // CHECK: call void @device_function() // CHECK: !{{[0-9]+}} = metadata !{void ()* @kernel_function, metadata !"kernel", i32 1} diff --git a/clang/test/CodeGenOpenCL/ptx-kernels.cl b/clang/test/CodeGenOpenCL/ptx-kernels.cl index 07648e40150..49d207f023c 100644 --- a/clang/test/CodeGenOpenCL/ptx-kernels.cl +++ b/clang/test/CodeGenOpenCL/ptx-kernels.cl @@ -2,10 +2,10 @@ void device_function() { } -// CHECK: define void @device_function() +// CHECK-LABEL: define void @device_function() __kernel void kernel_function() { } -// CHECK: define void @kernel_function() +// CHECK-LABEL: define void @kernel_function() // CHECK: !{{[0-9]+}} = metadata !{void ()* @kernel_function, metadata !"kernel", i32 1} |