summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-alias.c
diff options
context:
space:
mode:
authortbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-20 20:34:33 +0000
committertbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-20 20:34:33 +0000
commit4997014d846a7882f5d4103e24a47ac0eedeab06 (patch)
tree965ba1d411c1f3138ea9281113343956529b5c03 /gcc/tree-ssa-alias.c
parent349be7d3687a208c4c3fc8f104157d40ccc03bea (diff)
downloadgcc-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-alias.c')
-rw-r--r--gcc/tree-ssa-alias.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c
index e412d72a2c2..0fb4c447ab0 100644
--- a/gcc/tree-ssa-alias.c
+++ b/gcc/tree-ssa-alias.c
@@ -768,8 +768,8 @@ aliasing_component_refs_p (tree ref1,
static bool
nonoverlapping_component_refs_of_decl_p (tree ref1, tree ref2)
{
- stack_vec<tree, 16> component_refs1;
- stack_vec<tree, 16> component_refs2;
+ auto_vec<tree, 16> component_refs1;
+ auto_vec<tree, 16> component_refs2;
/* Create the stack of handled components for REF1. */
while (handled_component_p (ref1))