tree-ssa-copyrename.c (copy_rename_partition_coalesce): Check for arificial variables...
authorNathanael Nerode <neroden@gcc.gnu.org>
Mon, 16 Aug 2004 15:19:31 +0000 (15:19 +0000)
committerNathanael Nerode <neroden@gcc.gnu.org>
Mon, 16 Aug 2004 15:19:31 +0000 (15:19 +0000)
* tree-ssa-copyrename.c (copy_rename_partition_coalesce):
Check for arificial variables, not is_gimple_tmp_var.
* tree-ssa-live.c (var_union): Likewise.

From-SVN: r86057

gcc/ChangeLog
gcc/tree-ssa-copyrename.c
gcc/tree-ssa-live.c

index dc837ce96f1bcdc5989e70f105464f0624f3b857..a74aa20fc77403b9f2fd7820412d598052fd4bd7 100644 (file)
@@ -1,3 +1,9 @@
+2004-08-16  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+       * tree-ssa-copyrename.c (copy_rename_partition_coalesce):
+       Check for arificial variables, not is_gimple_tmp_var.
+       * tree-ssa-live.c (var_union): Likewise.
+
 2004-08-16  Nathan Sidwell  <nathan@codesourcery.com>
 
        * calls.c (load_register_parameters): Remove spurious FIXME token.
index 2fd87e2214b42ec46d7bea869578bb8b15ae0236..74667f8bc61423f7b36a12094c61072883a7e1fb 100644 (file)
@@ -195,8 +195,8 @@ copy_rename_partition_coalesce (var_map map, tree var1, tree var2, FILE *debug)
       return;
     }
 
-  gimp1 = is_gimple_tmp_var (root1);
-  gimp2 = is_gimple_tmp_var (root2);
+  gimp1 = (TREE_CODE (root1) == VAR_DECL && DECL_ARTIFICIAL (root1));
+  gimp2 = (TREE_CODE (root2) == VAR_DECL && DECL_ARTIFICIAL (root2));
 
   /* Never attempt to coalesce 2 user variables unless one is an inline 
      variable.  */
index bd5e8fb22ae23f5f220225e38fcffdf322130c29..95b1834453ca50b3bcb617d88e88d2c4817474fd 100644 (file)
@@ -135,7 +135,8 @@ var_union (var_map map, tree var1, tree var2)
 
       /* If there is no root_var set, or its not a user variable, set the
         root_var to this one.  */
-      if (!root_var || is_gimple_tmp_var (root_var))
+      if (!root_var
+          || (TREE_CODE (root_var) == VAR_DECL && DECL_ARTIFICIAL (root_var)))
         {
          other_var = root_var;
          root_var = var2;