diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-06 02:10:03 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-06 02:10:03 +0000 |
commit | 565e3f3ec215eb47c30758a8944a6efce5d1fbb1 (patch) | |
tree | 35321e13d117e53c293b79518646d2f25d786c3d /gcc/varray.h | |
parent | 7a3842b33ec211f73d3a354c06da94d4622406da (diff) | |
download | gcc-565e3f3ec215eb47c30758a8944a6efce5d1fbb1.tar.gz |
Makefile.in (ggc-simple.o): Depend on hash.h.
* Makefile.in (ggc-simple.o): Depend on hash.h.
* ggc.h (ggc_add_tree_hash_table_root): Declare.
(ggc_mark_tree_varray): Likewise.
(ggc_mark_tree_hash_table): Likewise.
* ggc-simple.c: Include hash.h.
(ggc_mark_tree_hash_table_ptr): New function.
(ggc_mark_tree_hash_table_entry): Likewise.
(ggc_mark_tree_hash_table): Likewise.
(ggc_add_tree_hash_table_root): Likewise.
* varray.h (const_equiv_data): Use struct rtx_def *, rather than
* profile.c (output_func_start_profiler): Remove apparently
nonsensical call to start_sequence.
From-SVN: r29134
Diffstat (limited to 'gcc/varray.h')
-rw-r--r-- | gcc/varray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varray.h b/gcc/varray.h index 5d773a39ed1..1b175eff0fa 100644 --- a/gcc/varray.h +++ b/gcc/varray.h @@ -47,7 +47,7 @@ struct const_equiv_data { pseudos that contain pointers into the replacement area allocated for this inline instance. These pseudos are then marked as being equivalent to the appropriate address and substituted if valid. */ - rtx rtx; + struct rtx_def *rtx; /* Record the valid age for each entry. The entry is invalid if its age is less than const_age. */ |