Files
clang-p2996/clang/test/CodeGenObjCXX/message-reference.mm
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
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
2023-07-07 08:41:11 -04:00

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