Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjCXX / property-object-reference-1.mm
blob5e78326f71c75829634267ad41480bbbf39113f3
1 // RUN: %clang_cc1 -x objective-c++ %s -triple x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
3 struct TCPPObject
5  TCPPObject(const TCPPObject& inObj);
6  TCPPObject();
7  ~TCPPObject();
8  int filler[64];
9 };
12 @interface MyDocument 
14 @private
15  TCPPObject _cppObject;
17 @property (atomic, assign, readwrite) const TCPPObject& cppObject;
18 @end
20 @implementation MyDocument
22 @synthesize cppObject = _cppObject;
24 @end
26 // CHECK: [[cppObjectaddr:%cppObject.addr]] = alloca ptr, align 8
27 // CHECK: store ptr [[cppObject:%.*]], ptr [[cppObjectaddr]], align 8
28 // CHECK:  [[THREE:%.*]] = load ptr, ptr [[cppObjectaddr]], align 8
29 // CHECK:  call void @objc_copyStruct(ptr noundef [[TWO:%.*]], ptr noundef [[THREE]], i64 noundef 256, i1 noundef zeroext true, i1 noundef zeroext false)