diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f6d95d3d98a..81d0b997c41 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-12-31 Hans-Peter Nilsson + + PR target/18701 + * combine.c (gen_lowpart_for_combine): When stripping SUBREG of + MEM, adjust imode and isize. + 2004-12-30 Richard Henderson * config/ia64/ia64.c (hfa_element_mode): Return false for diff --git a/gcc/combine.c b/gcc/combine.c index 800e65ea100..61b93dd3048 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -9355,8 +9355,16 @@ gen_lowpart_for_combine (enum machine_mode omode, rtx x) if (GET_CODE (x) == SUBREG && MEM_P (SUBREG_REG (x))) { x = SUBREG_REG (x); - if (GET_MODE (x) == omode) + + /* For use in case we fall down into the address adjustments + further below, we need to adjust the known mode and size of + x; imode and isize, since we just adjusted x. */ + imode = GET_MODE (x); + + if (imode == omode) return x; + + isize = GET_MODE_SIZE (imode); } result = gen_lowpart_common (omode, x);