llvm-project/clang/test/CodeGenObjC/objc2-weak-import-attribute.m
Aaron Ballman 46b0d0eef9 Use functions with prototypes when appropriate; NFC
A significant number of our tests in C accidentally use functions
without prototypes. This patch converts the function signatures to have
a prototype for the situations where the test is not specific to K&R C
declarations. e.g.,

  void func();

becomes

  void func(void);

This is the twelfth batch of tests being updated (the end may be in
sight soon though).
2022-02-16 16:10:37 -05:00

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(void) {
[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-X86-64-NOT: OBJC_METACLASS_$_Root" = extern_weak global