https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101625
Martin Liška <marxin at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |hubicka at gcc dot gnu.org --- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> --- Crashes due to: │ 3120 if (!ignore_stores) │ 3121 { │ 3122 if (to_info && callee_info) │ >3123 to_info->stores->merge (callee_info->stores, &parm_map); where to_info->stores == NULL. It's likely related to partial linking. @Honza?