llvm-capstone/clang/test/CodeGenObjC/direct-properties.m
Pierre Habouzit 52311d0483 [objc_direct] do not add direct properties to the serialization array
If we do, then the property_list_t length is wrong
and class_getProperty gets very sad.

Signed-off-by: Pierre Habouzit <phabouzit@apple.com>
Radar-Id: rdar://problem/58804805
Differential Revision: https://reviews.llvm.org/D73219
2020-01-23 22:39:47 -08:00

24 lines
544 B
Objective-C

// RUN: %clang_cc1 -emit-llvm -fobjc-arc -triple x86_64-apple-darwin10 %s -o - | FileCheck %s
__attribute__((objc_root_class))
@interface A
@property(direct, readonly) int i;
@end
__attribute__((objc_root_class))
@interface B
@property(direct, readonly) int i;
@property(readonly) int j;
@end
// CHECK-NOT: @"__OBJC_$_PROP_LIST_A"
@implementation A
@synthesize i = _i;
@end
// CHECK: @"_OBJC_$_PROP_LIST_B" = internal global { i32, i32, [1 x %struct._prop_t] } { i32 16, i32 1
@implementation B
@synthesize i = _i;
@synthesize j = _j;
@end