Skip to content

Commit 7aa944d

Browse files
author
Devang Patel
committed
New test.
llvm-svn: 36661
1 parent 1c10821 commit 7aa944d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// RUN: %llvmgcc -c %s -fobjc-gc -o /dev/null
2+
typedef int NSInteger;
3+
typedef struct _NSRect {
4+
int origin;
5+
int size;
6+
} NSRect;
7+
8+
__attribute__((objc_gc(strong))) NSRect *_cachedRectArray;
9+
extern const NSRect NSZeroRect;
10+
@interface A{
11+
}
12+
-(void)bar:(NSInteger *)rectCount;
13+
@end
14+
15+
@implementation A
16+
17+
-(void)bar:(NSInteger *)rectCount {
18+
NSRect appendRect = NSZeroRect;
19+
20+
_cachedRectArray[*rectCount - 1] = NSZeroRect;
21+
}
22+
23+
@end

0 commit comments

Comments
 (0)