From: J"orn Rennecke Date: Tue, 8 Dec 1998 14:35:18 +0000 (+0000) Subject: explow.c (plus_constant_wide): Don't immediately return with result of recursive... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=03d937fcebea686f9d4f456daa0f8251e0de67c8;p=gcc.git explow.c (plus_constant_wide): Don't immediately return with result of recursive call. * explow.c (plus_constant_wide): Don't immediately return with result of recursive call. From-SVN: r24195 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f75a603edac..6719ac7c69f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Dec 8 22:33:18 1998 J"orn Rennecke + + * explow.c (plus_constant_wide): Don't immediately return with + result of recursive call. + Tue Dec 8 15:32:56 EST 1998 Andrew MacLeod * eh-common.h (struct eh_context): Add table_index for rethrows. diff --git a/gcc/explow.c b/gcc/explow.c index e4ef27dc37f..c11ec9130b8 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -116,19 +116,32 @@ plus_constant_wide (x, c) integer. For a constant term that is not an explicit integer, we cannot really combine, but group them together anyway. - Use a recursive call in case the remaining operand is something - that we handle specially, such as a SYMBOL_REF. */ + Restart or use a recursive call in case the remaining operand is + something that we handle specially, such as a SYMBOL_REF. + + We may not immediately return from the recursive call here, lest + all_constant gets lost. */ if (GET_CODE (XEXP (x, 1)) == CONST_INT) - return plus_constant (XEXP (x, 0), c + INTVAL (XEXP (x, 1))); + { + c += INTVAL (XEXP (x, 1)); + x = XEXP (x, 0); + goto restart; + } else if (CONSTANT_P (XEXP (x, 0))) - return gen_rtx_PLUS (mode, - plus_constant (XEXP (x, 0), c), - XEXP (x, 1)); + { + x = gen_rtx_PLUS (mode, + plus_constant (XEXP (x, 0), c), + XEXP (x, 1)); + c = 0; + } else if (CONSTANT_P (XEXP (x, 1))) - return gen_rtx_PLUS (mode, - XEXP (x, 0), - plus_constant (XEXP (x, 1), c)); + { + x = gen_rtx_PLUS (mode, + XEXP (x, 0), + plus_constant (XEXP (x, 1), c)); + c = 0; + } break; default: