public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] tree-optimization/100398 - avoid DSE of control flow stmt
@ 2021-05-04 10:31 Richard Biener
  0 siblings, 0 replies; only message in thread
From: Richard Biener @ 2021-05-04 10:31 UTC (permalink / raw)
  To: gcc-patches

The following makes sure to preserve control altering stmts
when removing trivially dead stmts in DSE.

Boostrapped and tested on x86_64-unknown-linux-gnu, pushed.

2021-05-04  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/100398
	* tree-ssa-dse.c (pass_dse::execute): Preserve control
	altering stmts.

	* gcc.dg/torture/pr100398.c: New testcase.
---
 gcc/testsuite/gcc.dg/torture/pr100398.c | 13 +++++++++++++
 gcc/tree-ssa-dse.c                      |  1 +
 2 files changed, 14 insertions(+)
 create mode 100644 gcc/testsuite/gcc.dg/torture/pr100398.c

diff --git a/gcc/testsuite/gcc.dg/torture/pr100398.c b/gcc/testsuite/gcc.dg/torture/pr100398.c
new file mode 100644
index 00000000000..41eaddee27e
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/torture/pr100398.c
@@ -0,0 +1,13 @@
+/* { dg-do compile } */
+
+int
+test5_limit (void)
+{
+  int addr;
+
+  asm goto ("" : "+r" (addr) : : : t_err);
+  return 0;
+
+ t_err:
+  return 1;
+}
diff --git a/gcc/tree-ssa-dse.c b/gcc/tree-ssa-dse.c
index dfa6d314727..d7cf7477028 100644
--- a/gcc/tree-ssa-dse.c
+++ b/gcc/tree-ssa-dse.c
@@ -1219,6 +1219,7 @@ pass_dse::execute (function *fun)
 		 dead SSA defs.  */
 	      if (has_zero_uses (DEF_FROM_PTR (def_p))
 		  && !gimple_has_side_effects (stmt)
+		  && !is_ctrl_altering_stmt (stmt)
 		  && !stmt_unremovable_because_of_non_call_eh_p (cfun, stmt))
 		{
 		  if (dump_file && (dump_flags & TDF_DETAILS))
-- 
2.26.2

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-05-04 10:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-04 10:31 [PATCH] tree-optimization/100398 - avoid DSE of control flow stmt Richard Biener

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).