From fda055896547185dc7145046ccf0c66f3ad4e71e Mon Sep 17 00:00:00 2001 From: Fariborz Jahanian Date: Mon, 22 Mar 2010 18:27:27 +0000 Subject: [PATCH] Test for my last patch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99194 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGenObjC/objc2-nonfragile-abi-impl.m | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/CodeGenObjC/objc2-nonfragile-abi-impl.m diff --git a/test/CodeGenObjC/objc2-nonfragile-abi-impl.m b/test/CodeGenObjC/objc2-nonfragile-abi-impl.m new file mode 100644 index 0000000000..ff943303b7 --- /dev/null +++ b/test/CodeGenObjC/objc2-nonfragile-abi-impl.m @@ -0,0 +1,15 @@ +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi2 -emit-llvm -o %t %s +// rdar://7547942. + +@interface Base @end + +@interface Sub1 : Base @end + +@implementation Sub1 @end + +@implementation Base { +@private + id ivar; +} +@end + -- 2.40.0