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
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
debug-info-pubtypes.m
blob
ce3896f652feabf37325db30360fded853081177
1
// REQUIRES: x86-registered-target
2
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -debug-info-kind=limited -emit-llvm %s -o - | FileCheck %s
3
4
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "H"
5
// CHECK-SAME: line: [[@LINE+1]],
6
@interface H
7
-(void) foo;
8
@end
9
10
@implementation H
11
-(void) foo {
12
}
13
@end
14