[Bug c++/59883] Missed C++ front-end devirtualizations
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59883 Andrew Pinski changed: What|Removed |Added See Also||https://gcc.gnu.org/bugzill
[Bug c++/59883] Missed C++ front-end devirtualizations
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59883 --- Comment #1 from Jan Hubicka --- The self-recursion testcase is wrong, as can be seen by the following testcase: #include struct A { virtual int foo (void) {return foo()+1;} }; struct B: public A { virtual int foo (void) {return 1;} };