blob: f336d6b268757388b5fa4176c5486f5b5c453294 [file] [log] [blame]
// 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