https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69589
Martin Jambor <jamborm at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jamborm at gcc dot gnu.org
--- Comment #2 from Martin Jambor <jamborm at gcc dot gnu.org> ---
This assert triggers when there is a local node that does not have a
caller. Such nodes should have been removed (before IPA-CP is run)
because they are unreachable. (If we did not assert here,
verification that IPA-CP propagation reached all functions would
fail.) So I guess we need to find out why that did not happen.