(rest_of_compilation): Call shorten_branches even when !optimize.
authorTorbjorn Granlund <tege@gnu.org>
Thu, 27 Apr 1995 20:17:35 +0000 (20:17 +0000)
committerTorbjorn Granlund <tege@gnu.org>
Thu, 27 Apr 1995 20:17:35 +0000 (20:17 +0000)
From-SVN: r9513

gcc/toplev.c

index 8d9a1c2d81514fe73aeeacbb1fdee3f608090716..8c91858b358146e2efa90d4fcce1dc6ca9295868 100644 (file)
@@ -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));