freebsd-nq/test/CodeGen/cfstring.c

14 lines
237 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -emit-llvm %s -o %t
2009-06-02 17:58:47 +00:00
#define CFSTR __builtin___CFStringMakeConstantString
void f() {
CFSTR("Hello, World!");
}
// rdar://6248329
void *G = CFSTR("yo joe");
void h() {
static void* h = CFSTR("Goodbye, World!");
}