diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-04-12 17:19:23 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-04-12 17:19:23 +0000 |
commit | dacb336e10d3679e72c7a6e3d6a3ff9601234e5e (patch) | |
tree | 11f379d8dd19e84315d94096c16870aa09611e0c /gcc/Makefile.in | |
parent | aa9d194eec39c73ac45c617a2df0efc4435db8b7 (diff) | |
download | gcc-dacb336e10d3679e72c7a6e3d6a3ff9601234e5e.zip gcc-dacb336e10d3679e72c7a6e3d6a3ff9601234e5e.tar.gz gcc-dacb336e10d3679e72c7a6e3d6a3ff9601234e5e.tar.bz2 |
Makefile.in (TREE_SSA_LIVE_H): Add vecprim.h.
* Makefile.in (TREE_SSA_LIVE_H): Add vecprim.h.
* tree-ssa-live.c (tpa_init, tpa_remove_partition, tpa_delete,
tpa_compact, root_var_init, type_var_init): Use VEC instead of
VARRAY.
* tree-ssa-live.h: Include vecprim.h.
(tree_partition_associator_d): Change the type of
first_partition to VEC(int,heap) *.
(tpa_first_partition): Use VEC instead of VARRAY.
From-SVN: r112893
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 48f4ddf..67fdd77 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -787,7 +787,7 @@ TREE_GIMPLE_H = tree-gimple.h tree-iterator.h TREE_FLOW_H = tree-flow.h tree-flow-inline.h tree-ssa-operands.h \ bitmap.h $(BASIC_BLOCK_H) hard-reg-set.h $(TREE_GIMPLE_H) \ $(HASHTAB_H) $(CGRAPH_H) $(IPA_REFERENCE_H) -TREE_SSA_LIVE_H = tree-ssa-live.h $(PARTITION_H) +TREE_SSA_LIVE_H = tree-ssa-live.h $(PARTITION_H) vecprim.h PRETTY_PRINT_H = pretty-print.h input.h $(OBSTACK_H) DIAGNOSTIC_H = diagnostic.h diagnostic.def $(PRETTY_PRINT_H) options.h C_PRETTY_PRINT_H = c-pretty-print.h $(PRETTY_PRINT_H) $(C_COMMON_H) $(TREE_H) |