llvm/clang/test/CodeGenOpenCL/str_literals.cl
Anastasia Stulova 59055b94af [OpenCL] Add constant address space to __func__ in AST.
Added string literal helper function to obtain the type
attributed by a constant address space.

Also fixed predefind __func__ expr to use the helper
to constract the string literal correctly.

Differential Revision: https://reviews.llvm.org/D46049

llvm-svn: 331877
2018-05-09 13:23:26 +00:00

16 lines
617 B
Common Lisp

// RUN: %clang_cc1 %s -cl-opt-disable -emit-llvm -o - -ffake-address-space-map | FileCheck %s
__constant char *__constant x = "hello world";
__constant char *__constant y = "hello world";
// CHECK: unnamed_addr addrspace(2) constant{{.*}}"hello world\00"
// CHECK-NOT: addrspace(2) unnamed_addr constant
// CHECK: @x = {{(dso_local )?}}addrspace(2) constant i8 addrspace(2)*
// CHECK: @y = {{(dso_local )?}}addrspace(2) constant i8 addrspace(2)*
// CHECK: unnamed_addr addrspace(2) constant{{.*}}"f\00"
void f() {
//CHECK: store i8 addrspace(2)* {{.*}}, i8 addrspace(2)**
constant const char *f3 = __func__;
}