diff options
author | Jan Hubicka <jh@suse.cz> | 2005-06-24 05:09:54 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2005-06-24 03:09:54 +0000 |
commit | b8807f054bddc0e4014e5879f0fac331cc1a7768 (patch) | |
tree | dfcd4071b1cd2e8f0db171bf10190a164b253178 /gcc/opts.c | |
parent | ee18782ffc3a93f9da379f652285a29972236f84 (diff) | |
download | gcc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |