blob: e3fc2d70962f68619551d182aa0abaf989943d7c [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
Fariborz Jahanian3911a1a2010-09-25 01:08:05 +00002
3struct CGRect {
4 char* origin;
5 unsigned size;
6};
7typedef struct CGRect CGRect;
8
9extern "C" bool CGRectIsEmpty(CGRect);
10
11@interface Foo {
12 CGRect out;
13}
14@property CGRect bounds;
15- (CGRect) out;
16@end
17
18
19@implementation Foo
20
21- (void)bar {
22 CGRect dataRect;
23 CGRect virtualBounds;
24
Chris Lattner9cbe4f02011-07-09 17:41:47 +000025// CHECK: [[SRC:%.*]] = call { i8*, i32 } bitcast (i8* (i8*, i8*, ...)* @objc_msgSend
26// CHECK-NEXT: bitcast
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070027// CHECK-NEXT:getelementptr { i8*, i32 }, { i8*, i32 }* [[SRC:%.*]]
Eli Friedmanbadea572011-05-17 21:08:01 +000028// CHECK-NEXT:extractvalue
29// CHECK-NEXT:store
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070030// CHECK-NEXT:getelementptr { i8*, i32 }, { i8*, i32 }* [[SRC:%.*]]
Eli Friedmanbadea572011-05-17 21:08:01 +000031// CHECK-NEXT:extractvalue
32// CHECK-NEXT:store
Fariborz Jahanian3911a1a2010-09-25 01:08:05 +000033 dataRect = CGRectIsEmpty(virtualBounds) ? self.bounds : virtualBounds;
34 dataRect = CGRectIsEmpty(virtualBounds) ? [self bounds] : virtualBounds;
35 dataRect = CGRectIsEmpty(virtualBounds) ? virtualBounds : self.bounds;
36
37 dataRect = CGRectIsEmpty(virtualBounds) ? self.out : virtualBounds;
38 dataRect = CGRectIsEmpty(virtualBounds) ? [self out] : virtualBounds;
39 dataRect = CGRectIsEmpty(virtualBounds) ? virtualBounds : self.out;
40}
41
42@dynamic bounds;
43- (CGRect) out { return out; }
44@end