Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm %s -o %t
      2 
      3 typedef const struct __CFString * CFStringRef;
      4 
      5 #define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x)
      6 
      7 void f() {
      8   CFSTR("Hello, World!");
      9 }
     10 
     11 // rdar://6151192
     12 void *G = CFSTR("yo joe");
     13 
     14