Commit a95c317b by Richard Kenner

(get_condition): Use rtx_equal_p to compare rtx.

From-SVN: r12833
parent 2d0bd5fd
......@@ -6736,7 +6736,7 @@ get_condition (jump, earliest)
/* If this is setting OP0, get what it sets it to if it looks
relevant. */
if (SET_DEST (set) == op0)
if (rtx_equal_p (SET_DEST (set), op0))
{
enum machine_mode inner_mode = GET_MODE (SET_SRC (set));
......
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