xref: /aosp_15_r20/external/clang/test/CodeGenOpenCL/memcpy.cl (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 %s -ffake-address-space-map -emit-llvm -o - | FileCheck %s
2
3// CHECK-LABEL: @test
4// CHECK-NOT: addrspacecast
5// CHECK: call void @llvm.memcpy.p1i8.p3i8
6kernel void test(global float *g, constant float *c) {
7  __builtin_memcpy(g, c, 32);
8}
9