Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
93d6b07cd79d74e343d81c0e8fb5365376a33097
/
.
/
test
/
CodeGenObjC
/
2010-02-23-DbgInheritance.m
blob: 7d31b30cce5ff6e14b5c34a9b4365e58cd99b1aa [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -g -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
)
{}