2010-05-16 07:05:52 +08:00
|
|
|
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -fobjc-nonfragile-abi -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK-NOT: callq _objc_msgSend_stret
|
2010-05-06 23:45:36 +08:00
|
|
|
// CHECK: call void @_ZN1SC1ERKS_
|
|
|
|
// CHECK: call %class.S* @_ZN1SaSERKS_
|
2011-07-10 01:41:47 +08:00
|
|
|
// CHECK: call %struct.CGRect* @_ZN6CGRectaSERKS_
|
2010-05-06 23:45:36 +08:00
|
|
|
|
|
|
|
class S {
|
|
|
|
public:
|
|
|
|
S& operator = (const S&);
|
|
|
|
S (const S&);
|
|
|
|
S ();
|
|
|
|
};
|
|
|
|
|
2010-05-11 06:57:35 +08:00
|
|
|
struct CGRect {
|
|
|
|
CGRect & operator = (const CGRect &);
|
|
|
|
};
|
|
|
|
|
2010-05-06 23:45:36 +08:00
|
|
|
@interface I {
|
|
|
|
S position;
|
2010-05-11 06:57:35 +08:00
|
|
|
CGRect bounds;
|
2010-05-06 23:45:36 +08:00
|
|
|
}
|
|
|
|
@property(assign, nonatomic) S position;
|
2010-05-11 06:57:35 +08:00
|
|
|
@property CGRect bounds;
|
2010-05-16 07:05:52 +08:00
|
|
|
@property CGRect frame;
|
|
|
|
- (void)setFrame:(CGRect)frameRect;
|
|
|
|
- (CGRect)frame;
|
2010-05-11 06:57:35 +08:00
|
|
|
- (void) initWithOwner;
|
2010-09-02 03:36:41 +08:00
|
|
|
- (struct CGRect)extent;
|
|
|
|
- (void)dealloc;
|
2010-05-06 23:45:36 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I
|
|
|
|
@synthesize position;
|
2010-05-11 06:57:35 +08:00
|
|
|
@synthesize bounds;
|
2010-05-16 07:05:52 +08:00
|
|
|
@synthesize frame;
|
|
|
|
- (void)setFrame:(CGRect)frameRect {}
|
|
|
|
- (CGRect)frame {return bounds;}
|
|
|
|
|
2010-05-11 06:57:35 +08:00
|
|
|
- (void)initWithOwner {
|
2010-05-16 07:05:52 +08:00
|
|
|
I* _labelLayer;
|
2010-05-11 06:57:35 +08:00
|
|
|
CGRect labelLayerFrame = self.bounds;
|
|
|
|
labelLayerFrame = self.bounds;
|
2010-05-16 07:05:52 +08:00
|
|
|
_labelLayer.frame = labelLayerFrame;
|
2010-05-11 06:57:35 +08:00
|
|
|
}
|
2010-09-02 03:36:41 +08:00
|
|
|
// rdar://8366604
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
CGRect cgrect = self.extent;
|
|
|
|
}
|
|
|
|
- (struct CGRect)extent {return bounds;}
|
2010-05-06 23:45:36 +08:00
|
|
|
@end
|
2010-05-08 02:56:13 +08:00
|
|
|
|
|
|
|
int main() {
|
|
|
|
I *i;
|
|
|
|
S s1;
|
|
|
|
i.position = s1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-10 07:01:10 +08:00
|
|
|
// rdar://8379892
|
|
|
|
// CHECK: define void @_Z1fP1A
|
|
|
|
// CHECK: @objc_msgSend to void
|
|
|
|
struct X {
|
|
|
|
X();
|
|
|
|
X(const X&);
|
|
|
|
~X();
|
|
|
|
};
|
|
|
|
|
|
|
|
@interface A {
|
|
|
|
X xval;
|
|
|
|
}
|
|
|
|
- (X)x;
|
|
|
|
- (void)setX:(X)x;
|
|
|
|
@end
|
|
|
|
|
|
|
|
void f(A* a) {
|
|
|
|
a.x = X();
|
|
|
|
}
|