• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1 %s -emit-llvm -o - -ffake-address-space-map | FileCheck %s
2
3int test_func(constant char* foo);
4
5kernel 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