summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-copyrename.c
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@redhat.com>2004-09-16 18:45:33 +0000
committerAndrew Macleod <amacleod@gcc.gnu.org>2004-09-16 18:45:33 +0000
commit49f48e9ffca06f9a945da052f04e67f509e00205 (patch)
tree2745e6d5213d5831b375b7e3991cca3abb14e1e8 /gcc/tree-ssa-copyrename.c
parentf67d92e937b860e1f8d832c8de8249dbc7d657c3 (diff)
downloadgcc-49f48e9ffca06f9a945da052f04e67f509e00205.tar.gz
re PR tree-optimization/17517 (ICE: SSA corruption)
2004-09-16 Andrew MacLeod <amacleod@redhat.com> PR tree-optimization/17517 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Don't coalesce same-root variables without checking for abnormal PHI usage. From-SVN: r87609
Diffstat (limited to 'gcc/tree-ssa-copyrename.c')
-rw-r--r--gcc/tree-ssa-copyrename.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/tree-ssa-copyrename.c b/gcc/tree-ssa-copyrename.c
index 494e3a57dd5..49225d09b20 100644
--- a/gcc/tree-ssa-copyrename.c
+++ b/gcc/tree-ssa-copyrename.c
@@ -169,6 +169,16 @@ copy_rename_partition_coalesce (var_map map, tree var1, tree var2, FILE *debug)
return;
}
+ /* Don't coalesce if one of the variables occurs in an abnormal PHI. */
+ abnorm = (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rep1)
+ || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rep2));
+ if (abnorm)
+ {
+ if (debug)
+ fprintf (debug, " : Abnormal PHI barrier. No coalesce.\n");
+ return;
+ }
+
/* Partitions already have the same root, simply merge them. */
if (root1 == root2)
{
@@ -251,16 +261,6 @@ copy_rename_partition_coalesce (var_map map, tree var1, tree var2, FILE *debug)
return;
}
- /* Don't coalesce if one of the variables occurs in an abnormal PHI. */
- abnorm = (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rep1)
- || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rep2));
- if (abnorm)
- {
- if (debug)
- fprintf (debug, " : Abnormal PHI barrier. No coalesce.\n");
- return;
- }
-
/* Merge the two partitions. */
p3 = partition_union (map->var_partition, p1, p2);