From: David Blaikie Date: Tue, 11 Mar 2014 23:42:49 +0000 (+0000) Subject: DebugInfo: Remove debug-info-pubtypes.ccp - pubnames/pubtypes are adequately tested... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bdad57cc7071298713825aab8f86d51b0e218bb4;p=clang DebugInfo: Remove debug-info-pubtypes.ccp - pubnames/pubtypes are adequately tested in LLVM now. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203625 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-pubtypes.cpp b/test/CodeGenCXX/debug-info-pubtypes.cpp deleted file mode 100644 index 343f12bed2..0000000000 --- a/test/CodeGenCXX/debug-info-pubtypes.cpp +++ /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() { -}