Make this test not depend on how the variable is named.
[oota-llvm.git] / test / FrontendObjC / 2010-02-23-DbgInheritance.m
1 // RUN: %llvmgcc %s -S -g -o - | grep -v DW_TAG_member
2 // Interface P should not be a member of interface I in debug info.
3 @interface P 
4 @end
5
6 @interface I : P 
7 @end
8
9 void fn(I *iptr) {}