https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61654
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEW CC| |jamborm at gcc dot gnu.org Assignee|jakub at gcc dot gnu.org |unassigned at gcc dot gnu.org --- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Reduced testcase for the other ICE, ICEs only with -O3 -m32 and not with -O3 -m64 on x86_64-linux: struct A { virtual int a (int, int = 0); void b (); void c (); int d; }; struct B : virtual A { int a (int, int); int e; }; int f; void A::b () { a (0); } void A::c () { a (f); } int B::a (int, int) { return e; }