]> granicus.if.org Git - clang/commitdiff
DebugInfo: Remove debug-info-pubtypes.ccp - pubnames/pubtypes are adequately tested...
authorDavid Blaikie <dblaikie@gmail.com>
Tue, 11 Mar 2014 23:42:49 +0000 (23:42 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Tue, 11 Mar 2014 23:42:49 +0000 (23:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203625 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/debug-info-pubtypes.cpp [deleted file]

diff --git a/test/CodeGenCXX/debug-info-pubtypes.cpp b/test/CodeGenCXX/debug-info-pubtypes.cpp
deleted file mode 100644 (file)
index 343f12b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// REQUIRES: x86-registered-target
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -g -fstandalone-debug -S -mllvm -generate-dwarf-pub-sections=Enable %s -o - | FileCheck %s
-
-// FIXME: This testcase shouldn't rely on assembly emission.
-//CHECK: LpubTypes_begin[[SECNUM:[0-9]:]]
-//CHECK:         .asciz   "G"
-//CHECK-NEXT:    .long   0
-//CHECK-NEXT: LpubTypes_end[[SECNUM]]
-
-class G {
-public:
-  void foo();
-};
-
-void G::foo() {
-}