mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00: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) {}
|