aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/cfstring.c
blob: 7d7edeca3cb3a2f17ce10e0c0570914bef0cd341 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang -emit-llvm %s -o %t
#define CFSTR __builtin___CFStringMakeConstantString

void f() {
  CFSTR("Hello, World!");
}

// rdar://6248329
void *G = CFSTR("yo joe");