]> granicus.if.org Git - clang/commitdiff
Remove xfail'd test. This method of limiting debug info isn't
authorEric Christopher <echristo@gmail.com>
Thu, 16 May 2013 00:45:15 +0000 (00:45 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 16 May 2013 00:45:15 +0000 (00:45 +0000)
going to go anywhere.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181961 91177308-0d34-0410-b5e6-96231b3b80d8

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

diff --git a/test/CodeGenCXX/debug-info-limit-type.cpp b/test/CodeGenCXX/debug-info-limit-type.cpp
deleted file mode 100644 (file)
index e03024f..0000000
+++ /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 ]