diff options
author | Zdenek Dvorak <dvorakz@suse.cz> | 2007-02-01 15:57:08 +0100 |
---|---|---|
committer | Zdenek Dvorak <rakdver@gcc.gnu.org> | 2007-02-01 14:57:08 +0000 |
commit | c0d919fa35e2af4aedb4c0e50c73778795d3f0b4 (patch) | |
tree | 5aa85d6d740673247b225cc1fcc0fcf5bf2129ba /gcc/toplev.c | |
parent | 2a97d6b20de6e95f3e0948d6fecec340d421a1ec (diff) | |
download | gcc-c0d919fa35e2af4aedb4c0e50c73778795d3f0b4.tar.gz |
toplev.c (lang_dependent_init): Call init_set_costs.
* toplev.c (lang_dependent_init): Call init_set_costs.
* loop-init.c (loop_optimizer_init): Do not call init_set_costs.
From-SVN: r121464
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index cf95f02c94e..28d93b3e873 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1992,6 +1992,11 @@ lang_dependent_init (const char *name) provide a dummy function context for them. */ init_dummy_function_start (); init_expr_once (); + + /* Although the actions of init_set_costs are language-independent, + it uses optabs, so we cannot call it from backend_init. */ + init_set_costs (); + expand_dummy_function_end (); /* If dbx symbol table desired, initialize writing it and output the |