aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/debug-info-linkagename.m
blob: bda98eec49b5fdb5f54ea2a829fd82588cf5a5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: clang-cc  -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];
}