Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
81fe1fbf4abd00b24e078a80cb15a2d2c1343f11
/
.
/
clang
/
test
/
CodeGenObjC
/
2010-02-23-DbgInheritance.m
blob: cb8b5f8861cb20814af32dc29df2f580d6a92f1e [
file
] [
log
] [
blame
]
// 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
)
{}