freebsd-dev/test/CodeGen/cfstring.c
2009-06-02 17:58:47 +00:00

14 lines
235 B
C

// RUN: clang-cc -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!");
}