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