blob: b606e5d5dfca97f44df891bb0c5d8f9c3f27b8c4 [file] [log] [blame]
Daniel Dunbar3573b2c2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -g -S -o %t %s
Devang Patelb904f392010-08-25 17:32:22 +00002// RUN: not grep "001-[F bar" %t
3// Linkage name should not use 001 prefix in debug info.
Devang Patelb78b6452009-07-13 21:20:20 +00004
5@interface F
6-(int) bar;
7@end
8
9@implementation F
10-(int) bar {
11 return 42;
12}
13@end
14
15extern int f(F *fn) {
16 return [fn bar];
17}
18