new test case for r96974.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96975 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2010-02-23 19:37:40 +00:00
parent 652b7e488d
commit df0732de65

View File

@ -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) {}