diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-06 02:10:03 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-06 02:10:03 +0000 |
commit | 40a038bcc76abccc840d0e6564bd08abb62a59a2 (patch) | |
tree | 35321e13d117e53c293b79518646d2f25d786c3d /gcc/varray.h | |
parent | 276cdecebac7946640d9eabe21b213f5fc787500 (diff) | |
download | gcc-40a038bcc76abccc840d0e6564bd08abb62a59a2.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29134 138bc75d-0d04-0410-961f-82ee72b054a4
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. */ |