Commit a1295eec by Richard Biener Committed by Richard Biener

re PR c/84873 (ICE: verify_ssa failed (error: definition in block 3 does not…

re PR c/84873 (ICE: verify_ssa failed (error: definition in block 3 does not dominate use in block 4))

2018-03-16  Richard Biener  <rguenther@suse.de>

	PR c/84873
	* c-gimplify.c (c_gimplify_expr): Revert previous change.  Instead
	unshare the possibly folded expression.

From-SVN: r258591
parent 15f0c25f
2018-03-16 Richard Biener <rguenther@suse.de>
PR c/84873
* c-gimplify.c (c_gimplify_expr): Revert previous change. Instead
unshare the possibly folded expression.
2018-03-15 Richard Biener <rguenther@suse.de>
PR c/84873
......
......@@ -245,15 +245,9 @@ c_gimplify_expr (tree *expr_p, gimple_seq *pre_p ATTRIBUTE_UNUSED,
unsigned_type_node)
&& !types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (*op1_p)),
integer_type_node))
{
/* ??? Do not use convert () here or fold arbitrary trees
since folding can introduce tree sharing which is not
allowed during gimplification. */
if (TREE_CODE (*op1_p) == INTEGER_CST)
*op1_p = fold_convert (unsigned_type_node, *op1_p);
else
*op1_p = build1 (NOP_EXPR, unsigned_type_node, *op1_p);
}
/* Make sure to unshare the result, tree sharing is invalid
during gimplification. */
*op1_p = unshare_expr (convert (unsigned_type_node, *op1_p));
break;
}
......
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