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