mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
63a954131c
llvm-svn: 96975
10 lines
187 B
Objective-C
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) {}
|