aboutsummaryrefslogtreecommitdiff
path: root/gcc/opts.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2005-06-24 05:09:54 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2005-06-24 03:09:54 +0000
commitb8807f054bddc0e4014e5879f0fac331cc1a7768 (patch)
treedfcd4071b1cd2e8f0db171bf10190a164b253178 /gcc/opts.c
parentee18782ffc3a93f9da379f652285a29972236f84 (diff)
downloadgcc-b8807f054bddc0e4014e5879f0fac331cc1a7768.zip
gcc-b8807f054bddc0e4014e5879f0fac331cc1a7768.tar.gz
gcc-b8807f054bddc0e4014e5879f0fac331cc1a7768.tar.bz2
* opts.c (decode_options): Enable unit-at-a-time by default at -O1.
From-SVN: r101287
Diffstat (limited to 'gcc/opts.c')
-rw-r--r--gcc/opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/opts.c b/gcc/opts.c
index 039e0f1..b6f98e0 100644
--- a/gcc/opts.c
+++ b/gcc/opts.c
@@ -534,6 +534,7 @@ decode_options (unsigned int argc, const char **argv)
flag_tree_copy_prop = 1;
flag_tree_sink = 1;
flag_tree_salias = 1;
+ flag_unit_at_a_time = 1;
if (!optimize_size)
{
@@ -569,7 +570,6 @@ decode_options (unsigned int argc, const char **argv)
flag_delete_null_pointer_checks = 1;
flag_reorder_blocks = 1;
flag_reorder_functions = 1;
- flag_unit_at_a_time = 1;
flag_tree_store_ccp = 1;
flag_tree_store_copy_prop = 1;
flag_tree_vrp = 1;