aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.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/function.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/function.c')
-rw-r--r--gcc/function.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 3becef3..fd5eeb9 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -63,6 +63,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
#include "tree-gimple.h"
#include "tree-pass.h"
#include "predict.h"
+#include "vecprim.h"
#ifndef LOCAL_ALIGNMENT
#define LOCAL_ALIGNMENT(TYPE, ALIGNMENT) ALIGNMENT
@@ -123,9 +124,6 @@ struct machine_function * (*init_machine_status) (void);
/* The currently compiled function. */
struct function *cfun = 0;
-DEF_VEC_I(int);
-DEF_VEC_ALLOC_I(int,heap);
-
/* These arrays record the INSN_UIDs of the prologue and epilogue insns. */
static VEC(int,heap) *prologue;
static VEC(int,heap) *epilogue;