Commit 29fbecf3 by Jan Hubicka Committed by Jan Hubicka

* recog.c (validate_change_rtx_1): Unshare TO argument.

From-SVN: r126112
parent b40c4f68
2007-06-29 Jan Hubicka <jh@suse.cz>
* recog.c (validate_change_rtx_1): Unshare TO argument.
2007-06-29 Uros Bizjak <ubizjak@gmail.com>
PR tree-optimization/24659
......
......@@ -538,7 +538,7 @@ validate_replace_rtx_1 (rtx *loc, rtx from, rtx to, rtx object)
|| (GET_CODE (x) == GET_CODE (from) && GET_MODE (x) == GET_MODE (from)
&& rtx_equal_p (x, from)))
{
validate_change (object, loc, to, 1);
validate_unshare_change (object, loc, to, 1);
return;
}
......
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