property-weak-attribute-4.m   [plain text]


/* APPLE LOCAL file radar 4660366 */
/* Test that we call objc_assign_weak/objc_read_weak in 'weak' property 
   accessors without specifying -fobjc-gc.  */
/* APPLE LOCAL radar 4899595 */
/* { dg-options "-fno-objc-new-property -mmacosx-version-min=10.5" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-options "-fno-objc-new-property" { target arm*-*-darwin* } } */
/* { dg-do compile { target *-*-darwin* } } */

@interface TestWeak
@property(ivar, weak) id object;
@end

@implementation TestWeak
@end
/* { dg-final { scan-assembler "objc_assign_weak" } } */
/* { dg-final { scan-assembler "objc_read_weak" } } */