From: Richard Kenner Date: Wed, 22 Feb 1995 23:46:44 +0000 (-0500) Subject: (memory_address): Add missing "else". X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e475ed2aecbeed088aebbb8b5ad8543ed32d9879;p=gcc.git (memory_address): Add missing "else". From-SVN: r9037 --- diff --git a/gcc/explow.c b/gcc/explow.c index 78e379716de..4d6aac85bc8 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -1,5 +1,5 @@ /* Subroutines for manipulating rtx's in semantically interesting ways. - Copyright (C) 1987, 1991, 1994 Free Software Foundation, Inc. + Copyright (C) 1987, 1991, 1994, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -400,7 +400,7 @@ memory_address (mode, x) } } - if (GET_CODE (x) == MULT || GET_CODE (x) == MINUS) + else if (GET_CODE (x) == MULT || GET_CODE (x) == MINUS) x = force_operand (x, NULL_RTX); /* If we have a register that's an invalid address,