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