Devang Patel | 82abab0 | 2010-11-10 22:19:57 +0000 | [diff] [blame] | 1 | // 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 |