Sign in
llvm
/
llvm-project
/
clang
/
2b5defad0e3cadbcf8fe421135516f44d53c5dc9
/
.
/
test
/
CodeGenObjC
/
debug-info-linkagename.m
blob: 2b10e2bd67b82fbad57d73b31abafe9b4d6fb01b [
file
]
// RUN: %clang_cc1 -g -S -o %t %s
// RUN: not grep 001 %t
@interface
F
-(
int
)
bar
;
@end
@implementation
F
-(
int
)
bar
{
return
42
;
}
@end
extern
int
f
(
F
*
fn
)
{
return
[
fn bar
];
}