]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/cfstring2.c
Vendor import of clang RELEASE_360/rc2 tag r227651 (effectively, 3.6.0 RC2):
[FreeBSD/FreeBSD.git] / test / CodeGen / cfstring2.c
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