aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-outof-ssa.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-04-10 19:26:18 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-04-10 19:26:18 +0000
commite3df376d22bdd92e4cc62e2b290f76d39ddebcca (patch)
tree72369ac3330cae599d4bd914c7fefe3531387b4d /gcc/tree-outof-ssa.c
parent1a27722fa1d681f3e2267478db7829fbce70fc56 (diff)
downloadgcc-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-outof-ssa.c')
-rw-r--r--gcc/tree-outof-ssa.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c
index f2841ae..32f3544 100644
--- a/gcc/tree-outof-ssa.c
+++ b/gcc/tree-outof-ssa.c
@@ -46,6 +46,7 @@ Boston, MA 02110-1301, USA. */
#include "tree-ssa-live.h"
#include "tree-pass.h"
#include "toplev.h"
+#include "vecprim.h"
/* Flags to pass to remove_ssa_form. */
@@ -53,9 +54,6 @@ Boston, MA 02110-1301, USA. */
#define SSANORM_COMBINE_TEMPS 0x2
#define SSANORM_COALESCE_PARTITIONS 0x4
-DEF_VEC_I(int);
-DEF_VEC_ALLOC_I(int,heap);
-
/* Used to hold all the components required to do SSA PHI elimination.
The node and pred/succ list is a simple linear list of nodes and
edges represented as pairs of nodes.