diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2002-12-16 18:23:00 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2002-12-16 18:23:00 +0000 |
commit | 4977bab6ed59f01c73f9c8b9e92298706df9b6d5 (patch) | |
tree | c259697c448b0c6f548f153c48c46a8d7a75970f /gcc/genautomata.c | |
parent | b51dc045004ee7eb8d2bf4358ddf22a6cc6c1d00 (diff) | |
download | gcc-4977bab6ed59f01c73f9c8b9e92298706df9b6d5.tar.gz |
Merge basic-improvements-branch to trunk
From-SVN: r60174
Diffstat (limited to 'gcc/genautomata.c')
-rw-r--r-- | gcc/genautomata.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/genautomata.c b/gcc/genautomata.c index 8c48d6ad637..95f5789afa3 100644 --- a/gcc/genautomata.c +++ b/gcc/genautomata.c @@ -100,8 +100,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA function are used by gcc instruction scheduler and may be some other gcc code. */ -#include "hconfig.h" +#include "bconfig.h" #include "system.h" +#include "coretypes.h" +#include "tm.h" #include "rtl.h" #include "obstack.h" #include "errors.h" @@ -3581,9 +3583,6 @@ static vla_ptr_t units_container; /* The start address of the array. */ static unit_decl_t *units_array; -/* Empty reservation of maximal length. */ -static reserv_sets_t empty_reserv; - /* The state table itself is represented by the following variable. */ static htab_t state_table; @@ -4147,10 +4146,10 @@ initiate_states () initiate_alt_states (); VLA_PTR_CREATE (free_states, 1500, "free states"); state_table = htab_create (1500, state_hash, state_eq_p, (htab_del) 0); - empty_reserv = alloc_empty_reserv_sets (); + alloc_empty_reserv_sets (); } -/* Finisging work with the abstract data. */ +/* Finishing work with the abstract data. */ static void finish_states () { |