]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/c-family/c-gimplify.c
This patch rewrites the old VEC macro-based interface into a new one
[thirdparty/gcc.git] / gcc / c-family / c-gimplify.c
index 821c5d5d1ffcc18903ccaf90f605ff2e948efe5d..27814e1a1fb66b1d8485996b5af5d29e1a1df600 100644 (file)
@@ -108,9 +108,9 @@ add_block_to_enclosing (tree block)
   unsigned i;
   tree enclosing;
   gimple bind;
-  VEC(gimple, heap) *stack = gimple_bind_expr_stack ();
+  vec<gimple> stack = gimple_bind_expr_stack ();
 
-  FOR_EACH_VEC_ELT (gimple, stack, i, bind)
+  FOR_EACH_VEC_ELT (stack, i, bind)
     if (gimple_bind_block (bind))
       break;