Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / cfstring2.c
blob7ff57e14407f740b08d2f89f0e1c25fd87a3a775
1 // UNSUPPORTED: target={{.*}}-zos{{.*}}, target={{.*}}-aix{{.*}}
2 // RUN: %clang_cc1 -emit-llvm %s -o %t
4 typedef const struct __CFString * CFStringRef;
6 #define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x)
8 void f(void) {
9 CFSTR("Hello, World!");
12 void *G = CFSTR("yo joe");