Back out r101911 and see if it makes the bots happy.

llvm-svn: 101921
This commit is contained in:
Anders Carlsson
2010-04-20 18:05:10 +00:00
parent 92b761cf4b
commit 91baecfeb3
3 changed files with 13 additions and 50 deletions

View File

@@ -55,23 +55,3 @@ void f() { B b; }
// CHECK: store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1B, i64 0, i64 2)
// CHECK: call void @_ZN5FieldC1Ev
// CHECK: ret void
namespace Test1 {
// Test that we don't assert when initializing the vtable pointers in C.
struct A {
virtual void a();
int i;
};
struct B : virtual A {
virtual void b();
};
struct C : A, virtual B {
virtual void c();
C();
};
C::C() { }
}