From: Devang Patel Date: Tue, 23 Feb 2010 19:37:40 +0000 (+0000) Subject: new test case for r96974. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=df0732de65695a9b862a01eb98fa7cf02f5c7c4e;p=oota-llvm.git new test case for r96974. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96975 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/FrontendObjC/2010-02-23-DbgInheritance.m b/test/FrontendObjC/2010-02-23-DbgInheritance.m new file mode 100644 index 00000000000..7e1cf67b475 --- /dev/null +++ b/test/FrontendObjC/2010-02-23-DbgInheritance.m @@ -0,0 +1,9 @@ +// RUN: %llvmgcc %s -S -g -o - | grep -v DW_TAG_member +// Interface P should not be a member of interface I in debug info. +@interface P +@end + +@interface I : P +@end + +void fn(I *iptr) {}