This removes links to rdar, which is an internal bug tracker that the community doesn't have visibility into. See further discussion at: https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
20 lines
538 B
Plaintext
20 lines
538 B
Plaintext
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
@interface I {}
|
|
-(unsigned int&)referenceCount;
|
|
@end
|
|
|
|
@interface MyClass
|
|
+(int)writeBlip:(I*)srcBlip;
|
|
@end
|
|
|
|
@implementation MyClass
|
|
+(int)writeBlip:(I*)srcBlip{
|
|
return ([srcBlip referenceCount] == 0);
|
|
}
|
|
@end
|
|
|
|
// CHECK: [[T:%.*]] = call noundef nonnull align {{[0-9]+}} dereferenceable({{[0-9]+}}) ptr @objc_msgSend
|
|
// CHECK: [[U:%.*]] = load i32, ptr [[T]]
|
|
// CHECK: [[V:%.*]] = icmp eq i32 [[U]], 0
|