https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65465
Martin Liška changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65465
--- Comment #6 from Martin Liška ---
Author: marxin
Date: Thu Mar 19 17:35:52 2015
New Revision: 221518
URL: https://gcc.gnu.org/viewcvs?rev=221518&root=gcc&view=rev
Log:
Fix for PR ipa/65465.
PR ipa/65465
* cgraphunit.c (cgraph_node::c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65465
--- Comment #5 from Jakub Jelinek ---
Reduced testcase:
struct A {};
struct B { virtual A foo () const; };
struct C { A foo () const; };
struct D : virtual B { A foo () const {} };
struct F : D { virtual int bar () const; };
int F::bar () const
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65465
--- Comment #4 from Martin Liška ---
Patch I've been testing:
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index e640907..8b7d056 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -2484,8 +2484,9 @@ cgraph_node::create_wrapper (cgraph_
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65465
Jakub Jelinek changed:
What|Removed |Added
CC||jakub at gcc dot gnu.org
--- Comment #3
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65465
Richard Biener changed:
What|Removed |Added
Priority|P3 |P1
Status|UNCONFIRMED