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/lambda-code.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/lambda-code.c')
-rw-r--r-- | gcc/lambda-code.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/lambda-code.c b/gcc/lambda-code.c index 8c8b1e5..bf00c05 100644 --- a/gcc/lambda-code.c +++ b/gcc/lambda-code.c @@ -41,6 +41,7 @@ #include "tree-scalar-evolution.h" #include "vec.h" #include "lambda.h" +#include "vecprim.h" /* This loop nest code generation is based on non-singular matrix math. @@ -114,9 +115,6 @@ Fourier-Motzkin elimination is used to compute the bounds of the base space of the lattice. */ -DEF_VEC_I(int); -DEF_VEC_ALLOC_I(int,heap); - static bool perfect_nestify (struct loops *, struct loop *, VEC(tree,heap) *, VEC(tree,heap) *, VEC(int,heap) *, |