diff options
Diffstat (limited to 'gcc/tree-dfa.c')
-rw-r--r-- | gcc/tree-dfa.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/tree-dfa.c b/gcc/tree-dfa.c index 688bf7e2041..13b27599aea 100644 --- a/gcc/tree-dfa.c +++ b/gcc/tree-dfa.c @@ -33,12 +33,15 @@ along with GCC; see the file COPYING3. If not see #include "function.h" #include "tree-pretty-print.h" #include "gimple.h" -#include "tree-ssa.h" +#include "gimple-ssa.h" +#include "tree-phinodes.h" +#include "ssa-iterators.h" +#include "tree-ssanames.h" +#include "tree-dfa.h" #include "tree-inline.h" #include "tree-pass.h" #include "convert.h" #include "params.h" -#include "cgraph.h" /* Build and maintain data flow information for trees. */ @@ -741,8 +744,7 @@ dump_enumerated_decls (FILE *file, int flags) { basic_block bb; struct walk_stmt_info wi; - vec<numbered_tree> decl_list; - decl_list.create (40); + stack_vec<numbered_tree, 40> decl_list; memset (&wi, '\0', sizeof (wi)); wi.info = (void *) &decl_list; @@ -773,5 +775,4 @@ dump_enumerated_decls (FILE *file, int flags) last = ntp->t; } } - decl_list.release (); } |