From e475ed2aecbeed088aebbb8b5ad8543ed32d9879 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 22 Feb 1995 18:46:44 -0500 Subject: [PATCH] (memory_address): Add missing "else". From-SVN: r9037 --- gcc/explow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 2.30.2