mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
13 lines
247 B
C
13 lines
247 B
C
// RUN: clang-cc -emit-llvm %s -o %t
|
|
|
|
typedef const struct __CFString * CFStringRef;
|
|
|
|
#define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x)
|
|
|
|
void f() {
|
|
CFSTR("Hello, World!");
|
|
}
|
|
|
|
// rdar://6151192
|
|
void *G = CFSTR("yo joe");
|
|
|