diff options
author | Jan Hubicka <jh@suse.cz> | 2003-09-05 07:36:47 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2003-09-05 05:36:47 +0000 |
commit | 1f95c733291b7b79354ff8fc0ea1a28aee2f9fa5 (patch) | |
tree | ea4a97b34c6fe9691e64049b7f05237d04c6d2f6 /gcc/opts.c | |
parent | 8dafba3ca49dbbd3ac78eb8d026576b9633d433c (diff) | |
download | gcc-1f95c733291b7b79354ff8fc0ea1a28aee2f9fa5.zip gcc-1f95c733291b7b79354ff8fc0ea1a28aee2f9fa5.tar.gz gcc-1f95c733291b7b79354ff8fc0ea1a28aee2f9fa5.tar.bz2 |
opts.c (decode_options): Enable unit-at-a-time at -O2.
* opts.c (decode_options): Enable unit-at-a-time at -O2.
* params.def (max-inline-insns-single): Set to 500
(max-inline-insns-auto): Set to 150
* invoke.texi (max-inline-insns-single, max-inline-insns-auto): Update.
From-SVN: r71105
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -556,6 +556,7 @@ 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; } if (optimize >= 3) @@ -563,7 +564,6 @@ decode_options (unsigned int argc, const char **argv) flag_inline_functions = 1; flag_rename_registers = 1; flag_unswitch_loops = 1; - flag_unit_at_a_time = 1; } if (optimize < 2 || optimize_size) |