diff options
Diffstat (limited to 'test/CodeGenObjC/debug-info-fnname.m')
-rw-r--r-- | test/CodeGenObjC/debug-info-fnname.m | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGenObjC/debug-info-fnname.m b/test/CodeGenObjC/debug-info-fnname.m deleted file mode 100644 index f336d6b268757..0000000000000 --- a/test/CodeGenObjC/debug-info-fnname.m +++ /dev/null @@ -1,15 +0,0 @@ -// 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 - |