aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-phiopt.c
diff options
context:
space:
mode:
authorTrevor Saunders <tsaunders@mozilla.com>2013-12-20 20:34:33 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2013-12-20 20:34:33 +0000
commit00f96dc9a9a505ef2d439a808e66226fb8b93baf (patch)
tree965ba1d411c1f3138ea9281113343956529b5c03 /gcc/tree-ssa-phiopt.c
parentede34dfcebbfaded870a505d122557f2eff8c01a (diff)
downloadgcc-00f96dc9a9a505ef2d439a808e66226fb8b93baf.zip
gcc-00f96dc9a9a505ef2d439a808e66226fb8b93baf.tar.gz
gcc-00f96dc9a9a505ef2d439a808e66226fb8b93baf.tar.bz2
merge auto_vec and stack_vec
From-SVN: r206155
Diffstat (limited to 'gcc/tree-ssa-phiopt.c')
-rw-r--r--gcc/tree-ssa-phiopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c
index b6bb7e9..390258f 100644
--- a/gcc/tree-ssa-phiopt.c
+++ b/gcc/tree-ssa-phiopt.c
@@ -1874,7 +1874,7 @@ cond_if_else_store_replacement (basic_block then_bb, basic_block else_bb,
}
/* Find pairs of stores with equal LHS. */
- stack_vec<gimple, 1> then_stores, else_stores;
+ auto_vec<gimple, 1> then_stores, else_stores;
FOR_EACH_VEC_ELT (then_datarefs, i, then_dr)
{
if (DR_IS_READ (then_dr))