Commit 0e32506c by Richard Kenner

(simplify_logical, case AND): If still an AND, get new values for op0

and op1.

From-SVN: r9424
parent 8aa2a305
......@@ -4503,6 +4503,10 @@ simplify_logical (x, last)
if (GET_CODE (x) != AND)
return x;
if (GET_RTX_CLASS (GET_CODE (x)) == 'c'
|| GET_RTX_CLASS (GET_CODE (x)) == '2')
op0 = XEXP (x, 0), op1 = XEXP (x, 1);
}
/* Convert (A | B) & A to A. */
......
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