Skip to content
Snippets Groups Projects
Commit 59ecb6a1 authored by Eric Christopher's avatar Eric Christopher
Browse files

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
parent 6537f083
No related branches found
No related tags found
No related merge requests found
// 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 ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment