Add include needed for MSVC.
[clang/acc.git] / test / CodeGen / cfstring2.c
blobceefeb9e832c50f4d895f1dd7460876f9b4da546
1 // RUN: clang-cc -emit-llvm %s -o %t
3 typedef const struct __CFString * CFStringRef;
5 #define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x)
7 void f() {
8 CFSTR("Hello, World!");
11 // rdar://6151192
12 void *G = CFSTR("yo joe");