Home | History | Annotate | Download | only in CodeGenObjCXX

Lines Matching full:mystruct

4 struct MyStruct {
11 MyStruct _foo;
14 @property (assign, readwrite) const MyStruct& foo;
16 - (const MyStruct&) foo;
17 - (void) setFoo:(const MyStruct&)inFoo;
22 MyStruct myStruct;
24 myClass.foo = myStruct;
26 const MyStruct& currentMyStruct = myClass.foo;
29 // CHECK: [[C:%.*]] = call %struct.MyStruct* bitcast (i8* (i8*, i8*, ...)* @objc_msgSend
30 // CHECK: store %struct.MyStruct* [[C]], %struct.MyStruct** [[D:%.*]]