mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 12:56:07 +00:00

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
16 lines
617 B
Common Lisp
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__;
|
|
}
|