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
8 lines
225 B
Objective-C
8 lines
225 B
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-darwin11 -emit-llvm -fblocks -o - %s | FileCheck %s
|
|
|
|
void test(id x) {
|
|
// CHECK: load ptr, ptr @OBJC_SELECTOR_REFERENCES_, align 8, !invariant.load
|
|
// CHECK: @objc_msgSend
|
|
[x foo];
|
|
}
|