diff options
Diffstat (limited to 'clang/test/CodeGenOpenCL/memcpy.cl')
-rw-r--r-- | clang/test/CodeGenOpenCL/memcpy.cl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenOpenCL/memcpy.cl b/clang/test/CodeGenOpenCL/memcpy.cl index cb27803adf4..5911b5c5aa6 100644 --- a/clang/test/CodeGenOpenCL/memcpy.cl +++ b/clang/test/CodeGenOpenCL/memcpy.cl @@ -2,7 +2,7 @@ // CHECK-LABEL: @test // CHECK-NOT: addrspacecast -// CHECK: call void @llvm.memcpy.p1i8.p3i8 +// CHECK: call void @llvm.memcpy.p1i8.p2i8 kernel void test(global float *g, constant float *c) { __builtin_memcpy(g, c, 32); } |