1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -emit-llvm -o - %s | FileCheck -check-prefix CHECK-OSX %s 2*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple thumbv7-apple-ios3.0.0 -emit-llvm -o - %s | FileCheck -check-prefix CHECK-IOS %s 3*f4a2713aSLionel Sambuc// rdar://14802916 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc@interface I 6*f4a2713aSLionel Sambuc@end 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc@implementation I @end 9*f4a2713aSLionel Sambuc// CHECK-OSX: %struct._class_t* null, %struct._objc_cache* @_objc_empty_cache, i8* (i8*, i8*)** null 10*f4a2713aSLionel Sambuc// CHECK-IOS: %struct._class_t* null, %struct._objc_cache* @_objc_empty_cache, i8* (i8*, i8*)** null 11