summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-17 22:46:22 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-17 22:46:22 +0000
commit7a5749cc5ecec8d3b41689bc1e5d6086a8f2d5da (patch)
treec5ae8480d92cfb9bbf49e92a25cde20346423a8b /gcc/toplev.c
parentadf9e2e60bd5d73d15450f4d91658f8d9c7b1da6 (diff)
downloadgcc-7a5749cc5ecec8d3b41689bc1e5d6086a8f2d5da.tar.gz
* expr.c (init_expr_once): Don't use start/end_sequence.
Use rtx_alloc instead of emit_insn. * toplev.c (lang_dependent_init): Run init_expr_once here ... (lang_independent_init): ... not here. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53572 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 9fb8813191a..83cdc5799b1 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -5020,7 +5020,6 @@ lang_independent_init ()
provide a dummy function context for them. */
init_dummy_function_start ();
init_expmed ();
- init_expr_once ();
if (flag_caller_saves)
init_caller_save ();
expand_dummy_function_end ();
@@ -5051,6 +5050,7 @@ lang_dependent_init (name)
front end is initialized. */
init_eh ();
init_optabs ();
+ init_expr_once ();
/* Put an entry on the input file stack for the main input file. */
push_srcloc (input_filename, 0);