diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-10-12 11:57:17 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-10-12 11:57:17 -0400 |
commit | e4ba89beb22247e6b45415aac2af04c22189ef50 (patch) | |
tree | 8b1ba6303f99a5bd91afa3d1b9268e190fd10ab1 /gcc | |
parent | aa3e8d2aba1c2349bed3146a1a6533a65c0b1b16 (diff) | |
download | gcc-e4ba89beb22247e6b45415aac2af04c22189ef50.zip gcc-e4ba89beb22247e6b45415aac2af04c22189ef50.tar.gz gcc-e4ba89beb22247e6b45415aac2af04c22189ef50.tar.bz2 |
(try_combine): Fix typo in last change involving single_set.
From-SVN: r2409
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/combine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index aebb6b9..9dd969f 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -1562,8 +1562,8 @@ try_combine (i3, i2, i1) rtx newi3pat = PATTERN (XVECEXP (m_split, 0, 1)); newi2pat = PATTERN (XVECEXP (m_split, 0, 0)); - i2set = single_set (XVECEXP (m_split, 0, 1)); - i3set = single_set (XVECEXP (m_split, 0, 0)); + i3set = single_set (XVECEXP (m_split, 0, 1)); + i2set = single_set (XVECEXP (m_split, 0, 0)); /* In case we changed the mode of I2DEST, replace it in the pseudo-register table here. We can't do it above in case this |