add a case we fail to devirt.

llvm-svn: 118608
This commit is contained in:
Chris Lattner 2010-11-09 19:37:28 +00:00
parent 68147ee320
commit 4d94e47368
1 changed files with 20 additions and 0 deletions

View File

@ -1963,3 +1963,23 @@ bb3: ; preds = %entry
ret i32 %b
}
//===---------------------------------------------------------------------===//
clang -O3 fails to devirtualize this virtual inheritance case: (GCC PR45875)
struct c1 {};
struct c10 : c1{
virtual void foo ();
};
struct c11 : c10, c1{
virtual void f6 ();
};
struct c28 : virtual c11{
void f6 ();
};
void check_c28 () {
c28 obj;
c11 *ptr = &obj;
ptr->f6 ();
}
//===---------------------------------------------------------------------===//