llvm-for-llvmta/tools/clang/test/CodeGenObjC/2010-02-23-DbgInheritance.m

11 lines
238 B
Mathematica
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -emit-llvm %s -debug-info-kind=limited -o - | FileCheck %s
// CHECK-NOT: 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) {}