Commit bb4aaf18 by Torbjorn Granlund

(shorten_branches): For non-optimizing compiles, break after first pass.

From-SVN: r9514
parent d0c874f6
...@@ -815,6 +815,9 @@ shorten_branches (first) ...@@ -815,6 +815,9 @@ shorten_branches (first)
something_changed = 1; something_changed = 1;
} }
} }
/* For a non-optimizing compile, do only a single pass. */
if (!optimize)
break;
} }
#endif /* HAVE_ATTR_length */ #endif /* HAVE_ATTR_length */
} }
......
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