2022-12-12 17:01:34 +01:00
|
|
|
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | FileCheck %s
|
2009-11-12 20:14:24 +00:00
|
|
|
|
|
|
|
@class Some;
|
|
|
|
|
|
|
|
@protocol Proto
|
|
|
|
- (id)initSome:(Some *)anArg;
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
@interface Table <Proto>
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface BetterTable: Table
|
|
|
|
|
|
|
|
- (id)initSome:(Some *)arg;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation BetterTable
|
|
|
|
|
|
|
|
- (id)initSome:(Some *)arg {
|
|
|
|
|
|
|
|
if(self=[super initSome:arg])
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
2024-08-09 13:25:04 +01:00
|
|
|
// CHECK: load ptr, ptr getelementptr inbounds nuw (%struct._objc_class, ptr @OBJC_CLASS_BetterTable, i32 0, i32 1)
|
2009-11-12 20:14:24 +00:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|