diff options
author | Richard Henderson <rth@redhat.com> | 2002-05-17 15:46:22 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-05-17 15:46:22 -0700 |
commit | 1f8c3c5b318baaed878810dcdcc0a715ca8d2b7e (patch) | |
tree | c5ae8480d92cfb9bbf49e92a25cde20346423a8b /gcc/toplev.c | |
parent | 4664f4c40f8ff0d762f9655297fddcb9a885f3fc (diff) | |
download | gcc-1f8c3c5b318baaed878810dcdcc0a715ca8d2b7e.tar.gz |
expr.c (init_expr_once): Don't use start/end_sequence.
* 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.
From-SVN: r53572
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 2 |
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); |