]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenOpenCL/const-str-array-decay.cl
Vendor import of clang trunk r238337:
[FreeBSD/FreeBSD.git] / test / CodeGenOpenCL / const-str-array-decay.cl
1 // RUN: %clang_cc1 %s -emit-llvm -o - -ffake-address-space-map | FileCheck %s
2
3 int test_func(constant char* foo);
4
5 kernel void str_array_decy() {
6   test_func("Test string literal");
7 }
8
9 // CHECK: i8 addrspace(3)* getelementptr inbounds ([20 x i8], [20 x i8] addrspace(3)*
10 // CHECK-NOT: addrspacecast
11