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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
debug-info-class-extension2.m
blob
ea7865b4ac5b6e1fa3e4d95906631cfad382f0ac
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
// CHECK: AT_APPLE_objc_complete_type
4
5
@interface Foo {} @end
6
7
@interface Foo () {
8
int *bar;
9
}
10
@end
11
12
@implementation Foo
13
@end
14
15
void bar(Foo *fptr) {}