Files
clang-p2996/clang/test/CodeGen/cfstring2.c
Chris Lattner e94e13ca35 remove #include of system header, making this a) not apple specific, and
b) test dramatically faster.

llvm-svn: 69135
2009-04-15 04:26:10 +00:00

14 lines
247 B
C

// RUN: clang-cc -emit-llvm %s -o %t
typedef const struct __CFString * CFStringRef;
#define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x)
void f() {
CFSTR("Hello, World!");
}
// rdar://6151192
void *G = CFSTR("yo joe");