Commit 51934590 by Vladimir Makarov Committed by Vladimir Makarov

re PR fortran/42169 (gfortran.dg/pr41928.f90:47: internal compiler error: in…

re PR fortran/42169 (gfortran.dg/pr41928.f90:47: internal compiler error: in store_can_be_removed_p, at ira-emit.c:371)

2010-10-20  Vladimir Makarov  <vmakarov@redhat.com>

	PR fortran/42169
	* ira-emit.c (store_can_be_removed_p): Return false instead of
	gcc_unreachable.

From-SVN: r165722
parent 703cdce3
2010-10-20 Vladimir Makarov <vmakarov@redhat.com>
PR fortran/42169
* ira-emit.c (store_can_be_removed_p): Return false instead of
gcc_unreachable.
2010-10-20 Dmitry Melnik <dm@ispras.ru>
* fold-const.c (fold_binary_loc): New transformation.
......@@ -367,7 +367,8 @@ store_can_be_removed_p (ira_allocno_t src_allocno, ira_allocno_t dest_allocno)
prohibit removal of the store in such complicated case. */
return false;
}
gcc_unreachable ();
/* It is actually a loop entry -- do not remove the store. */
return false;
}
/* Generate and attach moves to the edge E. This looks at the final
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment