From: Torbjorn Granlund Date: Thu, 27 Apr 1995 20:17:35 +0000 (+0000) Subject: (rest_of_compilation): Call shorten_branches even when !optimize. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d0c874f698ab11ef823249fff7192789f388d2ed;p=gcc.git (rest_of_compilation): Call shorten_branches even when !optimize. From-SVN: r9513 --- diff --git a/gcc/toplev.c b/gcc/toplev.c index 8d9a1c2d815..8c91858b358 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -3342,12 +3342,11 @@ rest_of_compilation (decl) } #endif - if (optimize > 0) - /* Shorten branches. */ - TIMEVAR (shorten_branch_time, - { - shorten_branches (get_insns ()); - }); + /* Shorten branches. */ + TIMEVAR (shorten_branch_time, + { + shorten_branches (get_insns ()); + }); #ifdef STACK_REGS TIMEVAR (stack_reg_time, reg_to_stack (insns, stack_reg_dump_file));