Commit 693a9117 by Jan Hubicka Committed by Jan Hubicka

tree-inline.c (expand_call_inline): Fix path dealing with making lhs of call statement undefined.

	* tree-inline.c (expand_call_inline): Fix path dealing with
	making lhs of call statement undefined.

From-SVN: r235889
parent 6b715bf6
2016-05-04 Jan Hubicka <hubicka@ucw.cz>
* tree-inline.c (expand_call_inline): Fix path dealing with
making lhs of call statement undefined.
2016-05-04 Jan Hubicka <hubicka@ucw.cz>
* cgraph.c (cgraph_node::call_for_symbol_thunks_and_aliases):
Check availability on NODE, too.
* cgraph.h (symtab_node::call_for_symbol_and_aliases): Likewise.
......
......@@ -4708,7 +4708,7 @@ expand_call_inline (basic_block bb, gimple *stmt, copy_body_data *id)
{
tree name = gimple_call_lhs (stmt);
tree var = SSA_NAME_VAR (name);
tree def = ssa_default_def (cfun, var);
tree def = var ? ssa_default_def (cfun, var) : NULL;
if (def)
{
......@@ -4719,6 +4719,11 @@ expand_call_inline (basic_block bb, gimple *stmt, copy_body_data *id)
}
else
{
if (!var)
{
tree var = create_tmp_reg_fn (cfun, TREE_TYPE (name), NULL);
SET_SSA_NAME_VAR_OR_IDENTIFIER (name, var);
}
/* Otherwise make this variable undefined. */
gsi_remove (&stmt_gsi, true);
set_ssa_default_def (cfun, var, name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment