OSDN Git Service

* combine.c (subst): Honour CLASS_CANNOT_CHANGE_SIZE when
authorgeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 28 May 2000 01:06:11 +0000 (01:06 +0000)
committergeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 28 May 2000 01:06:11 +0000 (01:06 +0000)
substituting the REG in a (subreg:X (reg:Y ...)).

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34217 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/combine.c

index a2d5253..f491f3c 100644 (file)
@@ -1,3 +1,8 @@
+2000-05-27  Geoff Keating  <geoffk@cygnus.com>
+
+       * combine.c (subst): Honour CLASS_CANNOT_CHANGE_SIZE when
+       substituting the REG in a (subreg:X (reg:Y ...)).
+
 2000-05-28  Neil Booth  <NeilB@earthling.net>
 
        * cpplex.c (_cpp_lex_line): Merge vertical space.  Flag
index c9d6a52..8a14d80 100644 (file)
@@ -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++;
                }