mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 22:11:30 +08:00
(fixup_var_refs_1): Fix two incorrect calls to single_set.
From-SVN: r10776
This commit is contained in:
parent
9f541d35cf
commit
c46722a717
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user