Chris Lattner | eb52b44 | 2008-10-06 07:43:09 +0000 | [diff] [blame] | 1 | // RUN: clang -emit-llvm %s -o %t |
2 | |||||
3 | #ifdef __APPLE__ | ||||
4 | #include <Carbon/Carbon.h> | ||||
5 | |||||
6 | void f() { | ||||
7 | CFSTR("Hello, World!"); | ||||
8 | } | ||||
9 | |||||
Chris Lattner | 4bf203c | 2008-10-06 07:43:28 +0000 | [diff] [blame] | 10 | // rdar://6151192 |
Chris Lattner | eb52b44 | 2008-10-06 07:43:09 +0000 | [diff] [blame] | 11 | void *G = CFSTR("yo joe"); |
12 | |||||
13 | #endif |