| 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.p2i8 |
| 6 | kernel void test(global float *g, constant float *c) { |
| 7 | __builtin_memcpy(g, c, 32); |
| 8 | } |
| 9 |