aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/debug-info-fnname.m
blob: f336d6b268757388b5fa4176c5486f5b5c453294 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -emit-llvm -Os -g %s -o - | FileCheck %s
// Radar 8653152
@interface A {
}
@end


// CHECK: llvm.dbg.lv.-.A.title.
@implementation A
-(int) title {
  int x = 1;
  return x;
}
@end