aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto-streamer-in.c
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@ucw.cz>2019-12-03 19:15:53 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2019-12-03 18:15:53 +0000
commit4f75f97bf61a610f21023b731159489e6d23f0fe (patch)
tree262a0354bdce60ac9f60a37e4362343747674705 /gcc/lto-streamer-in.c
parentbd8a2482569900a114d631f9c38353d3a96a1d85 (diff)
downloadgcc-4f75f97bf61a610f21023b731159489e6d23f0fe.zip
gcc-4f75f97bf61a610f21023b731159489e6d23f0fe.tar.gz
gcc-4f75f97bf61a610f21023b731159489e6d23f0fe.tar.bz2
Do not update SSA in lto-stremaer-in
* cgraph.c: Include tree-into-ssa.h (cgraph_node::get_body): Call update_ssa. * cgraphunit.c (cgraph_node::expand): Likewise. * lto-streamer-in.c (input_function): Do not call update_ssa. From-SVN: r278943
Diffstat (limited to 'gcc/lto-streamer-in.c')
-rw-r--r--gcc/lto-streamer-in.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c
index 93ec8be..128d764 100644
--- a/gcc/lto-streamer-in.c
+++ b/gcc/lto-streamer-in.c
@@ -1223,7 +1223,6 @@ input_function (tree fn_decl, class data_in *data_in,
fixup_call_stmt_edges (node, stmts);
execute_all_ipa_stmt_fixups (node, stmts);
- update_ssa (TODO_update_ssa_only_virtuals);
free_dominance_info (CDI_DOMINATORS);
free_dominance_info (CDI_POST_DOMINATORS);
free (stmts);