aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/cfstring2.c
blob: 7b808b4aab40e3267421a9e4f0518cbfc7a5ac4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: clang-cc -emit-llvm %s -o %t

#ifdef __APPLE__
#include <Carbon/Carbon.h>

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

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

#endif