diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-20 20:34:33 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-20 20:34:33 +0000 |
commit | 4997014d846a7882f5d4103e24a47ac0eedeab06 (patch) | |
tree | 965ba1d411c1f3138ea9281113343956529b5c03 /gcc/tree-ssa-loop-ivcanon.c | |
parent | 349be7d3687a208c4c3fc8f104157d40ccc03bea (diff) | |
download | gcc-4997014d846a7882f5d4103e24a47ac0eedeab06.tar.gz |
merge auto_vec and stack_vec
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206155 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop-ivcanon.c')
-rw-r--r-- | gcc/tree-ssa-loop-ivcanon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-ivcanon.c b/gcc/tree-ssa-loop-ivcanon.c index fd4ac70821c..2533971864a 100644 --- a/gcc/tree-ssa-loop-ivcanon.c +++ b/gcc/tree-ssa-loop-ivcanon.c @@ -1171,7 +1171,7 @@ tree_unroll_loops_completely_1 (bool may_increase_size, bool unroll_outer, unsigned int tree_unroll_loops_completely (bool may_increase_size, bool unroll_outer) { - stack_vec<loop_p, 16> father_stack; + auto_vec<loop_p, 16> father_stack; bool changed; int iteration = 0; bool irred_invalidated = false; |