From: Richard Kenner Date: Thu, 15 Nov 2001 14:58:19 +0000 (+0000) Subject: final.c (alter_subreg): If simplify_subreg can't do anything, handle REG ourselves... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fea54805d1cfdd197167865a35b198ac95df0eca;p=gcc.git final.c (alter_subreg): If simplify_subreg can't do anything, handle REG ourselves and abort for others. * final.c (alter_subreg): If simplify_subreg can't do anything, handle REG ourselves and abort for others. From-SVN: r47058 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0cec809d659..aac12db4cc3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Nov 15 08:36:39 2001 Richard Kenner + + * final.c (alter_subreg): If simplify_subreg can't do anything, + handle REG ourselves and abort for others. + 2001-11-15 Richard Hodson * config/h8300/h8300.c (dosize): Avoid corrupting R3 in interrupt diff --git a/gcc/final.c b/gcc/final.c index 733503e9424..9302feae7ed 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -3038,7 +3038,26 @@ alter_subreg (xp) if (GET_CODE (y) == MEM) *xp = adjust_address (y, GET_MODE (x), SUBREG_BYTE (x)); else - *xp = simplify_subreg (GET_MODE (x), y, GET_MODE (y), SUBREG_BYTE (x)); + { + rtx new = simplify_subreg (GET_MODE (x), y, GET_MODE (y), + SUBREG_BYTE (x)); + + if (new != 0) + *xp = new; + /* Simplify_subreg can't handle some REG cases, but we have to. */ + else if (GET_CODE (y) == REG) + { + REGNO (x) = subreg_hard_regno (x, 1); + PUT_CODE (x, REG); + ORIGINAL_REGNO (x) = ORIGINAL_REGNO (y); + /* This field has a different meaning for REGs and SUBREGs. Make + sure to clear it! */ + x->used = 0; + } + else + abort (); + } + return *xp; }