1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/FrontendObjC/2010-02-23-DbgInheritance.m
Devang Patel 63a954131c new test case for r96974.
llvm-svn: 96975
2010-02-23 19:37:40 +00:00

10 lines
187 B
Objective-C

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