]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* tree-cfgcleanup.c (fixup_noreturn_call): Do not perform DCE here.
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 6 Nov 2014 20:13:18 +0000 (20:13 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 6 Nov 2014 20:13:18 +0000 (20:13 +0000)
From-SVN: r217201

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/opt43.adb [new file with mode: 0644]
gcc/tree-cfgcleanup.c

index d59a36043920c563fbab9d3bcfb47c9f98764084..57976f5564778e4ab4dbe037bb1985f1e22b1bb5 100644 (file)
@@ -1,3 +1,7 @@
+2014-11-06  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * tree-cfgcleanup.c (fixup_noreturn_call): Do not perform DCE here.
+
 2014-11-06  DJ Delorie  <dj@redhat.com>
 
        * config/m32c/cond.md (movqicc_<code>_<mode>): Remove mode of
index 003a044eec64948b5733cf27bc6a3f9f34f99bf0..bc50a71ab2e19f18d6f6849d784534b7a7f1d4e2 100644 (file)
@@ -1,3 +1,7 @@
+2014-11-06  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gnat.dg/opt43.adb: New test.
+
 2014-11-06  Marek Polacek  <polacek@redhat.com>
 
        * c-c++-common/ubsan/align-2.c: Add dg-output.
diff --git a/gcc/testsuite/gnat.dg/opt43.adb b/gcc/testsuite/gnat.dg/opt43.adb
new file mode 100644 (file)
index 0000000..35b407c
--- /dev/null
@@ -0,0 +1,21 @@
+-- { dg-do compile }
+-- { dg-options "-O -gnatws" }
+
+procedure Opt43 is
+
+  function Func return Integer is
+  begin
+    if False then
+       return 0;
+    end if;
+  end;
+
+begin
+
+  if Func = Func then
+    raise Program_Error;
+  end if;
+
+exception
+  when Program_Error => null;
+end;
index ec2f55a95b6dfc2e48391e9510bba253e7a92793..fa383acb4f2bd576e142712a6b067709ed461904 100644 (file)
@@ -568,7 +568,6 @@ bool
 fixup_noreturn_call (gimple stmt)
 {
   basic_block bb = gimple_bb (stmt);
-  bool changed = false;
 
   if (gimple_call_builtin_p (stmt, BUILT_IN_RETURN))
     return false;
@@ -590,46 +589,25 @@ fixup_noreturn_call (gimple stmt)
        split_block (bb, stmt);
     }
 
-  changed |= remove_fallthru_edge (bb->succs);
-
-  /* If there is LHS, remove it.  */
-  if (gimple_call_lhs (stmt))
+  /* If there is an LHS, remove it.  */
+  tree lhs = gimple_call_lhs (stmt);
+  if (lhs)
     {
-      tree op = gimple_call_lhs (stmt);
       gimple_call_set_lhs (stmt, NULL_TREE);
 
-      /* We need to remove SSA name to avoid checking errors.
-        All uses are dominated by the noreturn and thus will
-        be removed afterwards.
-        We proactively remove affected non-PHI statements to avoid
-        fixup_cfg from trying to update them and crashing.  */
-      if (TREE_CODE (op) == SSA_NAME)
+      /* We need to fix up the SSA name to avoid checking errors.  */
+      if (TREE_CODE (lhs) == SSA_NAME)
        {
-         use_operand_p use_p;
-          imm_use_iterator iter;
-         gimple use_stmt;
-         bitmap_iterator bi;
-         unsigned int bb_index;
-
-         bitmap blocks = BITMAP_ALLOC (NULL);
-
-          FOR_EACH_IMM_USE_STMT (use_stmt, iter, op)
-           {
-             if (gimple_code (use_stmt) != GIMPLE_PHI)
-               bitmap_set_bit (blocks, gimple_bb (use_stmt)->index);
-             else
-               FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
-                 SET_USE (use_p, error_mark_node);
-           }
-         EXECUTE_IF_SET_IN_BITMAP (blocks, 0, bb_index, bi)
-           delete_basic_block (BASIC_BLOCK_FOR_FN (cfun, bb_index));
-         BITMAP_FREE (blocks);
-         release_ssa_name (op);
+         tree new_var = create_tmp_reg (TREE_TYPE (lhs), NULL);
+         SET_SSA_NAME_VAR_OR_IDENTIFIER (lhs, new_var);
+         SSA_NAME_DEF_STMT (lhs) = gimple_build_nop ();
+         set_ssa_default_def (cfun, new_var, lhs);
        }
+
       update_stmt (stmt);
-      changed = true;
     }
-  return changed;
+
+  return remove_fallthru_edge (bb->succs);
 }