fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git] / test / FrontendObjC / 2010-02-23-DbgInheritance.m
blob7e1cf67b4750f62f34dc34b84ea37dd098850987
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
6 @interface I : P 
7 @end
9 void fn(I *iptr) {}