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
10 lines
375 B
Objective-C
10 lines
375 B
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -emit-llvm -o - %s | FileCheck -check-prefix CHECK-OSX %s
|
|
// RUN: %clang_cc1 -triple thumbv7-apple-ios3.0.0 -emit-llvm -o - %s | FileCheck -check-prefix CHECK-IOS %s
|
|
|
|
@interface I
|
|
@end
|
|
|
|
@implementation I @end
|
|
// CHECK-OSX: ptr null, ptr @_objc_empty_cache, ptr null
|
|
// CHECK-IOS: ptr null, ptr @_objc_empty_cache, ptr null
|