new test case for r96974.

llvm-svn: 96975
This commit is contained in:
Devang Patel 2010-02-23 19:37:40 +00:00
parent 8d7b4393d2
commit d09b921b7d
1 changed files with 9 additions and 0 deletions

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