PR optimization/5172, optimization/5200

PR optimization/5172, optimization/5200
	* gcse.c (gcse_main): Disable store_motion.

From-SVN: r50508
This commit is contained in:
Jakub Jelinek 2002-03-09 21:53:14 +01:00 committed by Jakub Jelinek
parent d143010d3b
commit 655d92fff7
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-03-09 Jakub Jelinek <jakub@redhat.com>
PR optimization/5172, optimization/5200
* gcse.c (gcse_main): Disable store_motion.
2002-03-09 Andreas Schwab <schwab@suse.de>
* gcc.c (validate_all_switches): Also handle `%W{...}'.

View File

@ -903,7 +903,8 @@ gcse_main (f, file)
end_alias_analysis ();
allocate_reg_info (max_reg_num (), FALSE, FALSE);
if (!optimize_size && flag_gcse_sm)
/* Store motion disabled until it is fixed. */
if (0 && !optimize_size && flag_gcse_sm)
store_motion ();
/* Record where pseudo-registers are set. */
return run_jump_opt_after_gcse;