mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
add a case we fail to devirt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118608 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
16cb3763c5
commit
274191fa70
@ -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 ();
|
||||
}
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
Loading…
Reference in New Issue
Block a user