This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/64728] [5 Regression] internal compiler error: SSA corruption


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64728

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Index: tree-ssa-coalesce.c
===================================================================
--- tree-ssa-coalesce.c (revision 219989)
+++ tree-ssa-coalesce.c (working copy)
@@ -1213,8 +1215,11 @@ coalesce_partitions (var_map map, ssa_co
                 gsi_next (&gsi))
              {
                gphi *phi = gsi.phi ();
-               tree res = PHI_RESULT (phi);
                tree arg = PHI_ARG_DEF (phi, e->dest_idx);
+               if (SSA_NAME_IS_DEFAULT_DEF (arg))
+                 continue;
+
+               tree res = PHI_RESULT (phi);
                int v1 = SSA_NAME_VERSION (res);
                int v2 = SSA_NAME_VERSION (arg);


fixes it for me.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]