Home | History | Annotate | Download | only in CodeGenObjC
      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 
     16