constant lvalue. Implement this in codegen by moving the code out of CGBuiltin into EmitConstantExpr. llvm-svn: 57163
12 lines
175 B
C
12 lines
175 B
C
// RUN: clang -emit-llvm %s -o %t
|
|
#define CFSTR __builtin___CFStringMakeConstantString
|
|
|
|
void f() {
|
|
CFSTR("Hello, World!");
|
|
}
|
|
|
|
// rdar://6248329
|
|
void *G = CFSTR("yo joe");
|
|
|
|
|