blob: 3a5b46fbacddd2b3d5bb9876f728c66c3a5626ad [file] [log] [blame]
/* APPLE LOCAL file */
/* { dg-do compile { target powerpc*-*-darwin* } } */
/* Magic "bcl" to do PIC setup should be suppressed (commented) */
@interface Base {}
- (id)init;
@end
@interface Derived : Base {}
@end
@implementation Derived
- (id)init
{
self = [super init];
if (self) {}
return self;
}
@end
/* { scan-assembler ";bcl" } */