Commit b8b89e7c by Segher Boessenkool Committed by Segher Boessenkool

cse.c (fold_rtx): Use validate_unshare_change() instead of validate_change() in one more case.

2007-09-09  Segher Boessenkool  <segher@kernel.crashing.org>

	* cse.c (fold_rtx): Use validate_unshare_change() instead of
	validate_change() in one more case.

From-SVN: r128275
parent cbc012d5
2007-09-09 Segher Boessenkool <segher@kernel.crashing.org>
* cse.c (fold_rtx): Use validate_unshare_change() instead of
validate_change() in one more case.
2007-09-08 Zdenek Dvorak <ook@ucw.cz>
PR tree-optimization/32283
......@@ -3102,7 +3102,7 @@ fold_rtx (rtx x, rtx insn)
if (insn == NULL_RTX && !changed)
x = copy_rtx (x);
changed = 1;
validate_change (insn, &XEXP (x, i), folded_arg, 1);
validate_unshare_change (insn, &XEXP (x, i), folded_arg, 1);
}
if (changed)
......
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