Home | History | Annotate | Download | only in CodeGenOpenCL
      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 
     12