10 lines
248 B
Common Lisp
10 lines
248 B
Common Lisp
// RUN: %clang_cc1 %s -emit-llvm -o - -ffake-address-space-map | FileCheck %s
|
|
|
|
int test_func(constant char* foo);
|
|
|
|
kernel void str_array_decy() {
|
|
test_func("Test string literal");
|
|
}
|
|
|
|
// CHECK: ptr addrspace(2) noundef
|
|
// CHECK-NOT: addrspacecast
|