blob: 5911b5c5aa63014deed9caf075c0d352b6311610 [file] [log] [blame]
Tom Stellardb919c7d2015-03-31 16:39:02 +00001// RUN: %clang_cc1 %s -ffake-address-space-map -emit-llvm -o - | FileCheck %s
2
3// CHECK-LABEL: @test
4// CHECK-NOT: addrspacecast
Egor Churaev28f00aa2016-12-23 16:11:25 +00005// CHECK: call void @llvm.memcpy.p1i8.p2i8
Tom Stellardb919c7d2015-03-31 16:39:02 +00006kernel void test(global float *g, constant float *c) {
7 __builtin_memcpy(g, c, 32);
8}