Commit d0c874f6 by Torbjorn Granlund

(rest_of_compilation): Call shorten_branches even when !optimize.

From-SVN: r9513
parent aa53d0ba
...@@ -3342,12 +3342,11 @@ rest_of_compilation (decl) ...@@ -3342,12 +3342,11 @@ rest_of_compilation (decl)
} }
#endif #endif
if (optimize > 0) /* Shorten branches. */
/* Shorten branches. */ TIMEVAR (shorten_branch_time,
TIMEVAR (shorten_branch_time, {
{ shorten_branches (get_insns ());
shorten_branches (get_insns ()); });
});
#ifdef STACK_REGS #ifdef STACK_REGS
TIMEVAR (stack_reg_time, reg_to_stack (insns, stack_reg_dump_file)); TIMEVAR (stack_reg_time, reg_to_stack (insns, stack_reg_dump_file));
......
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