Commit 85a59cea by Diego Novillo Committed by Diego Novillo

* opts.c (decode_options): Don't run PRE at -Os.

From-SVN: r89770
parent 283dd633
2004-10-28 Diego Novillo <dnovillo@redhat.com>
* opts.c (decode_options): Don't run PRE at -Os.
2004-10-28 Richard Henderson <rth@redhat.com> 2004-10-28 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.md (movqicc_internal): Allow exactly one * config/alpha/alpha.md (movqicc_internal): Allow exactly one
......
...@@ -497,7 +497,6 @@ decode_options (unsigned int argc, const char **argv) ...@@ -497,7 +497,6 @@ decode_options (unsigned int argc, const char **argv)
flag_tree_dce = 1; flag_tree_dce = 1;
flag_tree_dom = 1; flag_tree_dom = 1;
flag_tree_dse = 1; flag_tree_dse = 1;
flag_tree_pre = 1;
flag_tree_ter = 1; flag_tree_ter = 1;
flag_tree_live_range_split = 1; flag_tree_live_range_split = 1;
flag_tree_sra = 1; flag_tree_sra = 1;
...@@ -511,6 +510,9 @@ decode_options (unsigned int argc, const char **argv) ...@@ -511,6 +510,9 @@ decode_options (unsigned int argc, const char **argv)
the condition is satisfied in the first iteration and therefore the condition is satisfied in the first iteration and therefore
to eliminate it. Jump threading handles these cases now. */ to eliminate it. Jump threading handles these cases now. */
flag_tree_ch = 1; flag_tree_ch = 1;
/* PRE tends to generate bigger code. */
flag_tree_pre = 1;
} }
} }
......
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