diff options
author | Richard Biener <rguenther@suse.de> | 2017-12-05 13:19:45 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2017-12-05 13:19:45 +0000 |
commit | 1b6546cc4efb5687b62917c6a0d744b842a4945c (patch) | |
tree | 0dae80ec008fb73997ea5479459a06e04ce7778e /gcc/tree-ssa-math-opts.c | |
parent | 40c21e918dd15cb03b74aba9893d0a9f7f7f7624 (diff) | |
download | gcc-1b6546cc4efb5687b62917c6a0d744b842a4945c.zip gcc-1b6546cc4efb5687b62917c6a0d744b842a4945c.tar.gz gcc-1b6546cc4efb5687b62917c6a0d744b842a4945c.tar.bz2 |
timevar.def (TV_TREE_RECIP, [...]): Add.
2017-12-05 Richard Biener <rguenther@suse.de>
* timevar.def (TV_TREE_RECIP, TV_TREE_SINCOS, TV_TREE_WIDEN_MUL):
Add.
* tree-ssa-math-opts.c (pass_data_cse_reciprocal): Use TV_TREE_RECIP.
(pass_data_cse_sincos): Use TV_TREE_SINCOS.
(pass_data_optimize_widening_mul): Use TV_TREE_WIDEN_MUL.
From-SVN: r255415
Diffstat (limited to 'gcc/tree-ssa-math-opts.c')
-rw-r--r-- | gcc/tree-ssa-math-opts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-math-opts.c b/gcc/tree-ssa-math-opts.c index 7b5250b..8db12f5 100644 --- a/gcc/tree-ssa-math-opts.c +++ b/gcc/tree-ssa-math-opts.c @@ -688,7 +688,7 @@ const pass_data pass_data_cse_reciprocals = GIMPLE_PASS, /* type */ "recip", /* name */ OPTGROUP_NONE, /* optinfo_flags */ - TV_NONE, /* tv_id */ + TV_TREE_RECIP, /* tv_id */ PROP_ssa, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ @@ -1902,7 +1902,7 @@ const pass_data pass_data_cse_sincos = GIMPLE_PASS, /* type */ "sincos", /* name */ OPTGROUP_NONE, /* optinfo_flags */ - TV_NONE, /* tv_id */ + TV_TREE_SINCOS, /* tv_id */ PROP_ssa, /* properties_required */ PROP_gimple_opt_math, /* properties_provided */ 0, /* properties_destroyed */ @@ -3243,7 +3243,7 @@ const pass_data pass_data_optimize_widening_mul = GIMPLE_PASS, /* type */ "widening_mul", /* name */ OPTGROUP_NONE, /* optinfo_flags */ - TV_NONE, /* tv_id */ + TV_TREE_WIDEN_MUL, /* tv_id */ PROP_ssa, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ |