+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
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;
}