increasingly prevailing case to the point that new features like ARC don't even support the fragile ABI anymore. This required a little bit of reshuffling with exceptions because a check was assuming that ObjCNonFragileABI was only being set in ObjC mode, and that's actually a bit obnoxious to do. Most, though, it involved a perl script to translate a ton of test cases. Mostly no functionality change for driver users, although there are corner cases with disabling language-specific exceptions that we should handle more correctly now. llvm-svn: 140957
49 lines
1.2 KiB
Objective-C
49 lines
1.2 KiB
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-X86-64 %s
|
|
|
|
__attribute__((weak_import)) @interface WeakRootClass @end
|
|
|
|
__attribute__((weak_import)) @interface WeakClass : WeakRootClass
|
|
@end
|
|
|
|
@interface MySubclass : WeakClass @end
|
|
|
|
@implementation MySubclass @end
|
|
|
|
@implementation WeakClass(MyCategory) @end
|
|
|
|
|
|
__attribute__((weak_import))
|
|
@interface WeakClass1 @end
|
|
|
|
@implementation WeakClass1(MyCategory) @end
|
|
|
|
@implementation WeakClass1(YourCategory) @end
|
|
|
|
__attribute__((weak_import))
|
|
@interface WeakClass3
|
|
+ message;
|
|
@end
|
|
|
|
int main() {
|
|
[WeakClass3 message];
|
|
}
|
|
|
|
// CHECK-X86-64: OBJC_METACLASS_$_WeakRootClass" = extern_weak global
|
|
// CHECK-X86-64: OBJC_METACLASS_$_WeakClass" = extern_weak global
|
|
// CHECK-X86-64: OBJC_CLASS_$_WeakClass" = extern_weak global
|
|
// CHECK-X86-64: OBJC_CLASS_$_WeakClass1" = extern_weak global
|
|
// CHECK-X86-64: OBJC_CLASS_$_WeakClass3" = extern_weak global
|
|
|
|
// Root is being implemented here. No extern_weak.
|
|
__attribute__((weak_import)) @interface Root @end
|
|
|
|
@interface Super : Root @end
|
|
|
|
@interface Sub : Super @end
|
|
|
|
@implementation Sub @end
|
|
|
|
@implementation Root @end
|
|
|
|
// CHECK-NOT-X86-64: OBJC_METACLASS_$_Root" = extern_weak global
|