brintos

brintos / llvm-project-archived public Read only

0
0
Text · 300 B · 7ff57e1 Raw
14 lines · c
1// UNSUPPORTED: target={{.*}}-zos{{.*}}, target={{.*}}-aix{{.*}}2// RUN: %clang_cc1 -emit-llvm %s -o %t3 4typedef const struct __CFString * CFStringRef;5 6#define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x)7 8void f(void) {9  CFSTR("Hello, World!");10}11 12void *G = CFSTR("yo joe");13 14