Commit 5adb7c85 by Jakub Jelinek Committed by Jakub Jelinek

re PR rtl-optimization/70261 (r234265 causes fails on rs6000)

	PR target/70261
	* rtlanal.c (replace_rtx): Revert 2016-03-16 change.

From-SVN: r234279
parent e7c0c2b0
2016-03-17 Jakub Jelinek <jakub@redhat.com>
PR target/70261
* rtlanal.c (replace_rtx): Revert 2016-03-16 change.
2016-03-16 Richard Henderson <rth@redhat.com>
Richard Biener <rguenth@suse.de>
......
......@@ -2961,16 +2961,7 @@ replace_rtx (rtx x, rtx from, rtx to)
if (x == 0)
return 0;
if (GET_CODE (x) == REG)
{
if (GET_CODE (from) == REG
&& REGNO (x) == REGNO (from))
{
gcc_assert (GET_MODE (x) == GET_MODE (from));
return to;
}
}
else if (GET_CODE (x) == SUBREG)
if (GET_CODE (x) == SUBREG)
{
rtx new_rtx = replace_rtx (SUBREG_REG (x), from, to);
......
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