From d0c874f698ab11ef823249fff7192789f388d2ed Mon Sep 17 00:00:00 2001 From: Torbjorn Granlund Date: Thu, 27 Apr 1995 20:17:35 +0000 Subject: [PATCH] (rest_of_compilation): Call shorten_branches even when !optimize. From-SVN: r9513 --- gcc/toplev.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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)); -- 2.30.2