Commit c46722a7 by Richard Kenner

(fixup_var_refs_1): Fix two incorrect calls to single_set.

From-SVN: r10776
parent 9f541d35
......@@ -1979,7 +1979,7 @@ fixup_var_refs_1 (var, promoted_mode, loc, insn, replacements)
&& (GET_CODE (SET_DEST (x)) == REG
|| (GET_CODE (SET_DEST (x)) == SUBREG
&& GET_CODE (SUBREG_REG (SET_DEST (x))) == REG))
&& x == single_set (PATTERN (insn)))
&& x == single_set (insn))
{
rtx pat;
......@@ -2024,7 +2024,7 @@ fixup_var_refs_1 (var, promoted_mode, loc, insn, replacements)
&& (GET_CODE (SET_SRC (x)) == REG
|| (GET_CODE (SET_SRC (x)) == SUBREG
&& GET_CODE (SUBREG_REG (SET_SRC (x))) == REG))
&& x == single_set (PATTERN (insn)))
&& x == single_set (insn))
{
rtx pat;
......
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