blob: 3bd1a2d1834455290597a4ea0911b9ccaf796f08 [file] [log] [blame]
// RUN: clang -emit-llvm %s -o %t
#define CFSTR __builtin___CFStringMakeConstantString
void f() {
CFSTR("Hello, World!");
}
// rdar://6248329
void *G = CFSTR("yo joe");
void h() {
static void* h = CFSTR("Goodbye, World!");
}