1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 16:33:37 +01:00
llvm-mirror/test/FrontendObjC/2010-02-23-DbgInheritance.m

10 lines
187 B
Mathematica
Raw Normal View History

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