mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 08:06:08 +00:00

2007-04-03-ObjcEH.m 2007-05-02-Strong.m 2007-10-18-ProDescriptor.m 2007-10-23-GC-WriteBarrier.m 2008-10-3-EhValue.m 2008-11-12-Metadata.m 2008-11-24-ConstCFStrings.m from llvm/test/FrontendObjC. llvm-svn: 138172
24 lines
428 B
Objective-C
24 lines
428 B
Objective-C
// RUN: %clang_cc1 -S %s -fobjc-gc -o /dev/null
|
|
typedef int NSInteger;
|
|
typedef struct _NSRect {
|
|
int origin;
|
|
int size;
|
|
} NSRect;
|
|
|
|
__attribute__((objc_gc(strong))) NSRect *_cachedRectArray;
|
|
extern const NSRect NSZeroRect;
|
|
@interface A{
|
|
}
|
|
-(void)bar:(NSInteger *)rectCount;
|
|
@end
|
|
|
|
@implementation A
|
|
|
|
-(void)bar:(NSInteger *)rectCount {
|
|
NSRect appendRect = NSZeroRect;
|
|
|
|
_cachedRectArray[*rectCount - 1] = NSZeroRect;
|
|
}
|
|
|
|
@end
|