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][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
debug-info-property3.m
blob
20880600a781c7c4a01f7659f0b8950676b7c63d
1
// RUN: %clang_cc1 -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
2
3
@interface I1
4
// CHECK: !DIObjCProperty(name: "p1"
5
// CHECK-SAME: line: [[@LINE+2]]
6
// CHECK-SAME: attributes: 2316
7
@property int p1;
8
@end
9
10
@implementation I1
11
@synthesize p1;
12
@end
13
14
void foo(I1 *iptr) {}