Commit 534bfae4 by Richard Kenner

(rest_of_compilation): Always rerun jump_optimize after CSE if -O2.

From-SVN: r8468
parent e1f56f62
...@@ -2915,7 +2915,7 @@ rest_of_compilation (decl) ...@@ -2915,7 +2915,7 @@ rest_of_compilation (decl)
0, cse_dump_file)); 0, cse_dump_file));
TIMEVAR (cse_time, delete_dead_from_cse (insns, max_reg_num ())); TIMEVAR (cse_time, delete_dead_from_cse (insns, max_reg_num ()));
if (tem) if (tem || optimize > 1)
TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 0)); TIMEVAR (jump_time, jump_optimize (insns, 0, 0, 0));
} }
......
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