diff options
Diffstat (limited to 'gcc/tree-vectorizer.h')
-rw-r--r-- | gcc/tree-vectorizer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/tree-vectorizer.h b/gcc/tree-vectorizer.h index 8551b68..f36e2ad 100644 --- a/gcc/tree-vectorizer.h +++ b/gcc/tree-vectorizer.h @@ -627,6 +627,11 @@ public: stmt in the chain. */ auto_vec<stmt_vec_info> reduction_chains; + /* The vectorized stmts defining the latch values of the reduction + they are involved with. */ + auto_vec<stmt_vec_info> reduc_latch_defs; + auto_vec<std::pair<slp_tree, slp_tree> > reduc_latch_slp_defs; + /* Cost vector for a single scalar iteration. */ auto_vec<stmt_info_for_cost> scalar_cost_vec; |