diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-10 19:26:18 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-10 19:26:18 +0000 |
commit | 05f3df98104a9cd98a8fd76aa40466bf43e758f2 (patch) | |
tree | 72369ac3330cae599d4bd914c7fefe3531387b4d /gcc/tree-outof-ssa.c | |
parent | 6f56c055e9875b16ebfa6fa132a973a7c5d848aa (diff) | |
download | gcc-05f3df98104a9cd98a8fd76aa40466bf43e758f2.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112830 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index f2841ae00e8..32f354487d8 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. |