From: Eric Christopher Date: Thu, 16 May 2013 00:45:15 +0000 (+0000) Subject: Remove xfail'd test. This method of limiting debug info isn't X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59ecb6a15526f1c90e3edda125573b273a561f06;p=clang Remove xfail'd test. This method of limiting debug info isn't going to go anywhere. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181961 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-limit-type.cpp b/test/CodeGenCXX/debug-info-limit-type.cpp deleted file mode 100644 index e03024fb3c..0000000000 --- a/test/CodeGenCXX/debug-info-limit-type.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s -// XFAIL: * - -class B { -public: - int bb; - void fn2() {} -}; - -class A { -public: - int aa; - void fn1(B b) { b.fn2(); } -}; - -void foo(A *aptr) { -} - -void bar() { - A a; -} - -// B should only be emitted as a forward reference (i32 4). -// CHECK: metadata !"B", metadata !6, i32 3, i32 0, i32 0, i32 0, i32 4} ; [ DW_TAG_class_type ]