From: ciceron Date: Fri, 20 Jul 2001 19:34:56 +0000 (+0000) Subject: * config/m68hc11/m68hc11.c (m68hc11_gen_highpart): Don't use X-Git-Tag: upstream/4.9.2~93129 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ed35e790fcd76db061d707ba16320d9f2647f65;p=platform%2Fupstream%2Flinaro-gcc.git * config/m68hc11/m68hc11.c (m68hc11_gen_highpart): Don't use gen_highpart. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44206 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7af8bd..f19c5f8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-07-20 Stephane Carrez + + * config/m68hc11/m68hc11.c (m68hc11_gen_highpart): Don't use + gen_highpart. + 2001-07-20 Daniel Berlin * params.def: Change default max inline insns to 100. diff --git a/gcc/config/m68hc11/m68hc11.c b/gcc/config/m68hc11/m68hc11.c index cf5d968..da7f490 100644 --- a/gcc/config/m68hc11/m68hc11.c +++ b/gcc/config/m68hc11/m68hc11.c @@ -1922,18 +1922,30 @@ m68hc11_gen_highpart (mode, x) } /* gen_highpart crashes when it is called with a SUBREG. */ - if (GET_CODE (x) == SUBREG && SUBREG_BYTE (x) != 0) + if (GET_CODE (x) == SUBREG) { return gen_rtx (SUBREG, mode, XEXP (x, 0), XEXP (x, 1)); } - x = gen_highpart (mode, x); + if (GET_CODE (x) == REG) + { + if (REGNO (x) < FIRST_PSEUDO_REGISTER) + return gen_rtx (REG, mode, REGNO (x)); + else + return gen_rtx_SUBREG (mode, x, 0); + } - /* Return a different rtx to avoid to share it in several insns - (when used by a split pattern). Sharing addresses within - a MEM breaks the Z register replacement (and reloading). */ if (GET_CODE (x) == MEM) - x = copy_rtx (x); - return x; + { + x = change_address (x, mode, 0); + + /* Return a different rtx to avoid to share it in several insns + (when used by a split pattern). Sharing addresses within + a MEM breaks the Z register replacement (and reloading). */ + if (GET_CODE (x) == MEM) + x = copy_rtx (x); + return x; + } + abort (); }