diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-18 05:45:37 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-18 05:45:37 +0000 |
commit | 7769507025585f23d219c94422537235e4148a1c (patch) | |
tree | a423e6df5b432920d8f9fbe1c1a2321d11a04ed2 /gcc/emit-rtl.c | |
parent | 09a5cc038ef9ea404221937743665555871016d8 (diff) | |
download | gcc-7769507025585f23d219c94422537235e4148a1c.tar.gz |
* c-common.c (back_end_hook): New variable.
* c-common.h (back_end_hook): Declare it.
* c-lang.c (finish_file): Use it.
* emit-rtl.c (init_emit_once): Initialize the const_int_htab
earlier.
* cp-tree.h (back_end_hook): Remove declaration.
* decl2.c (back_end_hook): Remove definition.
* dump.c (dequeue_and_dump): Dump TREE_USED.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36928 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 66b1f7e93a9..3929e8820cf 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -4008,6 +4008,12 @@ init_emit_once (line_numbers) enum machine_mode mode; enum machine_mode double_mode; + /* Initialize the CONST_INT hash table. */ + const_int_htab = htab_create (37, const_int_htab_hash, + const_int_htab_eq, NULL); + ggc_add_root (&const_int_htab, 1, sizeof (const_int_htab), + rtx_htab_mark); + no_line_numbers = ! line_numbers; /* Compute the word and byte modes. */ @@ -4191,12 +4197,6 @@ init_emit_once (line_numbers) ggc_add_rtx_root (&static_chain_rtx, 1); ggc_add_rtx_root (&static_chain_incoming_rtx, 1); ggc_add_rtx_root (&return_address_pointer_rtx, 1); - - /* Initialize the CONST_INT hash table. */ - const_int_htab = htab_create (37, const_int_htab_hash, - const_int_htab_eq, NULL); - ggc_add_root (&const_int_htab, 1, sizeof (const_int_htab), - rtx_htab_mark); } /* Query and clear/ restore no_line_numbers. This is used by the |