repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
FrontendObjC
/
2010-02-23-DbgInheritance.m
blob
7e1cf67b4750f62f34dc34b84ea37dd098850987
1
// RUN: %llvmgcc %s -S -g -o - | grep -v DW_TAG_member
2
// Interface P should not be a member of interface I in debug info.
3
@interface P
4
@end
5
6
@interface I : P
7
@end
8
9
void fn(I *iptr) {}