forked from OSchip/llvm-project
6 lines
120 B
C
6 lines
120 B
C
|
// RUN: clang -emit-llvm %s
|
||
|
#define CFSTR __builtin___CFStringMakeConstantString
|
||
|
|
||
|
void f() {
|
||
|
CFSTR("Hello, World!");
|
||
|
}
|