r181961 - Remove xfail'd test. This method of limiting debug info isn't
Eric Christopher
echristo at gmail.com
Wed May 15 17:45:16 PDT 2013
Author: echristo
Date: Wed May 15 19:45:15 2013
New Revision: 181961
URL: http://llvm.org/viewvc/llvm-project?rev=181961&view=rev
Log:
Remove xfail'd test. This method of limiting debug info isn't
going to go anywhere.
Removed:
cfe/trunk/test/CodeGenCXX/debug-info-limit-type.cpp
Removed: cfe/trunk/test/CodeGenCXX/debug-info-limit-type.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-limit-type.cpp?rev=181960&view=auto
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-limit-type.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-limit-type.cpp (removed)
@@ -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 ]
More information about the cfe-commits
mailing list