diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-04-10 19:26:18 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-04-10 19:26:18 +0000 |
commit | e3df376d22bdd92e4cc62e2b290f76d39ddebcca (patch) | |
tree | 72369ac3330cae599d4bd914c7fefe3531387b4d /gcc/tree-into-ssa.c | |
parent | 1a27722fa1d681f3e2267478db7829fbce70fc56 (diff) | |
download | gcc-e3df376d22bdd92e4cc62e2b290f76d39ddebcca.zip gcc-e3df376d22bdd92e4cc62e2b290f76d39ddebcca.tar.gz gcc-e3df376d22bdd92e4cc62e2b290f76d39ddebcca.tar.bz2 |
Makefile.in (tree-into-ssa.o, [...]): Depend on vecprim.h.
* Makefile.in (tree-into-ssa.o, tree-outof-ssa.o,
tree-ssa-live.o, tree-ssa-alias.o, function.o, df-problems.o,
global.o, cfglayout.o, lambda-code.o, reg-stack.o,
build/genextract.o): Depend on vecprim.h.
* cfglayout.c, df-problems.c, function.c, genextract.c,
global.c, lambda-code.c, reg-stack.c, tree-into-ssa.c,
tree-outof-ssa.c, tree-ssa-alias.c, tree-ssa-live.c: Include
vecprim.h.
* vecprim.h: New.
From-SVN: r112830
Diffstat (limited to 'gcc/tree-into-ssa.c')
-rw-r--r-- | gcc/tree-into-ssa.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index e0b6e6e..29ad2fc 100644 --- a/gcc/tree-into-ssa.c +++ b/gcc/tree-into-ssa.c @@ -47,6 +47,7 @@ Boston, MA 02110-1301, USA. */ #include "domwalk.h" #include "ggc.h" #include "params.h" +#include "vecprim.h" /* This file builds the SSA form for a function as described in: R. Cytron, J. Ferrante, B. Rosen, M. Wegman, and K. Zadeck. Efficiently @@ -103,12 +104,6 @@ static htab_t def_blocks; associated with the current block. */ static VEC(tree,heap) *block_defs_stack; -/* Basic block vectors used in this file ought to be allocated in the - heap. We use pointer vector, because ints can be easily passed by - value. */ -DEF_VEC_I(int); -DEF_VEC_ALLOC_I(int,heap); - /* Set of existing SSA names being replaced by update_ssa. */ static sbitmap old_ssa_names; |