diff options
author | Bill Schmidt <wschmidt@linux.ibm.com> | 2012-07-16 12:32:25 +0000 |
---|---|---|
committer | William Schmidt <wschmidt@gcc.gnu.org> | 2012-07-16 12:32:25 +0000 |
commit | a75a89ebaadc09e289f1808bcb091e25443439a3 (patch) | |
tree | 7f839957259bfdcbb8688cf9eb85b44a40661c24 /gcc/opts.c | |
parent | 673369608c82ea332809a5e5141b1ab659cb56d1 (diff) | |
download | gcc-a75a89ebaadc09e289f1808bcb091e25443439a3.zip gcc-a75a89ebaadc09e289f1808bcb091e25443439a3.tar.gz gcc-a75a89ebaadc09e289f1808bcb091e25443439a3.tar.bz2 |
opts.c (default_option): Add -fvect-cost-model to default options at -O3 and above.
2012-07-16 Bill Schmidt <wschmidt@linux.ibm.com>
* opts.c (default_option): Add -fvect-cost-model to default options
at -O3 and above.
From-SVN: r189527
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -501,6 +501,7 @@ static const struct default_options default_options_table[] = { OPT_LEVELS_3_PLUS, OPT_funswitch_loops, NULL, 1 }, { OPT_LEVELS_3_PLUS, OPT_fgcse_after_reload, NULL, 1 }, { OPT_LEVELS_3_PLUS, OPT_ftree_vectorize, NULL, 1 }, + { OPT_LEVELS_3_PLUS, OPT_fvect_cost_model, NULL, 1 }, { OPT_LEVELS_3_PLUS, OPT_fipa_cp_clone, NULL, 1 }, { OPT_LEVELS_3_PLUS, OPT_ftree_partial_pre, NULL, 1 }, |