Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / tentative-cfconstantstring.m
blobbb78b210d6bb0e6b2dfdc737b96df7d965364420
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
3 @interface NSObject @end
5 @class NSString;
7 int __CFConstantStringClassReference[24];
9 @interface Bar : NSObject
10 +(void)format:(NSString *)format,...;
11 @end
13 @interface Foo : NSObject
14 @end
17 static inline void _inlineFunction(void) {
18     [Bar format:@" "];
21 @implementation Foo
24 +(NSString *)someMethod {
25    return @"";
28 -(void)someMethod {
29    _inlineFunction();
31 @end
33 // CHECK: @__CFConstantStringClassReference ={{.*}} global [24 x i32] zeroinitializer, align 16
34 // CHECK: @_unnamed_cfstring_{{.*}} = private global %struct.__NSConstantString_tag { ptr @__CFConstantStringClassReference
36 // CHECK-LABEL: define internal void @_inlineFunction()
37 // CHECK:  [[ZERO:%.*]] = load ptr, ptr @"OBJC_CLASSLIST_REFERENCES_
38 // CHECK-NEXT:   [[SEL:%.*]] = load ptr, ptr @OBJC_SELECTOR_REFERENCES_
39 // CHECK-NEXT:   call void (ptr, ptr, ptr, ...) @objc_msgSend(ptr noundef [[ZERO]], ptr noundef [[SEL]], ptr noundef @_unnamed_cfstring_{{.*}})
40 // CHECK-NEXT:   ret void