diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-24 08:02:52 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-24 08:02:52 +0000 |
commit | 097e45d14c3624f9ec21f84fc9f9639f6f397b29 (patch) | |
tree | 37a1d38c67ae6c9913d2748253b0578d0257c631 | |
parent | 86c31b2d150ede7efba5e394716e341396a8b450 (diff) | |
download | gcc-097e45d14c3624f9ec21f84fc9f9639f6f397b29.zip gcc-097e45d14c3624f9ec21f84fc9f9639f6f397b29.tar.gz gcc-097e45d14c3624f9ec21f84fc9f9639f6f397b29.tar.bz2 |
(subst): Typo in prev change.
From-SVN: r4557
-rw-r--r-- | gcc/combine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 49e214e..b254d36 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -3092,7 +3092,7 @@ subst (x, from, to, in_dest, unique_copy) if (CONSTANT_P (SUBREG_REG (x)) && subreg_lowpart_p (x) && GET_MODE_SIZE (mode) < GET_MODE_SIZE (op0_mode) #if WORDS_BIG_ENDIAN - && GET_MODE_BITSIZE (op0_mode) < BITS_PER_WORD + && GET_MODE_BITSIZE (op0_mode) <= BITS_PER_WORD #endif ) return gen_lowpart_for_combine (mode, SUBREG_REG (x)); |