Commit f5f178e0 by Richard Stallman

*** empty log message ***

From-SVN: r802
parent 861d9076
...@@ -301,12 +301,13 @@ gen_insn (insn) ...@@ -301,12 +301,13 @@ gen_insn (insn)
rtx new = XEXP (XVECEXP (insn, 1, j), 0); rtx new = XEXP (XVECEXP (insn, 1, j), 0);
/* OLD and NEW are the same if both are to be a SCRATCH /* OLD and NEW are the same if both are to be a SCRATCH
of the same mode,
or if both are registers of the same mode and number. */ or if both are registers of the same mode and number. */
if (! ((GET_CODE (old) == MATCH_SCRATCH if (! (GET_MODE (old) == GET_MODE (new)
&& GET_CODE (new) == MATCH_SCRATCH) && ((GET_CODE (old) == MATCH_SCRATCH
|| (GET_CODE (old) == REG && GET_CODE (new) == REG && GET_CODE (new) == MATCH_SCRATCH)
&& GET_MODE (old) == GET_MODE (new) || (GET_CODE (old) == REG && GET_CODE (new) == REG
&& REGNO (old) == REGNO (new)))) && REGNO (old) == REGNO (new)))))
break; break;
} }
......
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