This is the mail archive of the gcc-patches@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]

Fix stmt updating in PRE


Hi,
on pretty-ipa we commonly segfault on C++ code because of the following
bug.  I am re-testing on mainline and will commit as obvious if it
succeeds.

Honza
	* tree-ssa-pre.c (elliminate): Fix call of update_stmt.
Index: tree-ssa-pre.c
===================================================================
--- tree-ssa-pre.c	(revision 145956)
+++ tree-ssa-pre.c	(working copy)
@@ -4209,7 +4209,7 @@
 	  && single_imm_use (lhs, &use_p, &use_stmt))
 	{
 	  SET_USE (use_p, gimple_assign_rhs1 (stmt));
-	  update_stmt (stmt);
+	  update_stmt (use_stmt);
 	}
 
       /* If this is a store or a now unused copy, remove it.  */


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