aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorGeoff Keating <geoffk@cygnus.com>2000-05-28 01:06:11 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2000-05-28 01:06:11 +0000
commited8afe3ab07e9ed5cd22900331946b0d19eb6a04 (patch)
treed3e739aad3e230a0803a04aa080152f552cea4f1 /gcc/combine.c
parentf624ffa71f84afc0f8fb14e76a664a4556574efd (diff)
downloadgcc-ed8afe3ab07e9ed5cd22900331946b0d19eb6a04.zip
gcc-ed8afe3ab07e9ed5cd22900331946b0d19eb6a04.tar.gz
gcc-ed8afe3ab07e9ed5cd22900331946b0d19eb6a04.tar.bz2
combine.c (subst): Honour CLASS_CANNOT_CHANGE_SIZE when substituting the REG in a (subreg:X (reg:Y...
* combine.c (subst): Honour CLASS_CANNOT_CHANGE_SIZE when substituting the REG in a (subreg:X (reg:Y ...)). From-SVN: r34217
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index c9d6a52..8a14d80 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -3400,6 +3400,18 @@ subst (x, from, to, in_dest, unique_copy)
)
return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
+#ifdef CLASS_CANNOT_CHANGE_SIZE
+ if (code == SUBREG
+ && GET_CODE (to) == REG
+ && REGNO (to) < FIRST_PSEUDO_REGISTER
+ && (TEST_HARD_REG_BIT
+ (reg_class_contents[(int) CLASS_CANNOT_CHANGE_SIZE],
+ REGNO (to)))
+ && (GET_MODE_BITSIZE (GET_MODE (to))
+ != GET_MODE_BITSIZE (GET_MODE (x))))
+ return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
+#endif
+
new = (unique_copy && n_occurrences ? copy_rtx (to) : to);
n_occurrences++;
}