blob: f336d6b268757388b5fa4176c5486f5b5c453294 [file] [log] [blame]
Devang Patel82abab02010-11-10 22:19:57 +00001// RUN: %clang_cc1 -emit-llvm -Os -g %s -o - | FileCheck %s
2// Radar 8653152
3@interface A {
4}
5@end
6
7
8// CHECK: llvm.dbg.lv.-.A.title.
9@implementation A
10-(int) title {
11 int x = 1;
12 return x;
13}
14@end
15