repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
debug-info-class-extension.m
blob
db654e6a60a55da04ddd7049d8c5de7bcc345f82
1
// FIXME: Check IR rather than asm, then triple is not needed.
2
// RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited %s -o - | FileCheck %s
3
4
// CHECK: AT_APPLE_objc_complete_type
5
6
@interface I1
7
@end
8
9
@implementation I1 {
10
int myi2;
11
}
12
int myi;
13
@end
14
15
void foo(I1 *iptr) {}
16