diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-02-22 18:46:44 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-02-22 18:46:44 -0500 |
commit | e475ed2aecbeed088aebbb8b5ad8543ed32d9879 (patch) | |
tree | c4413f331fa1646db5cd5159f3a30b7d62e684a5 /gcc | |
parent | 5bdc151289c62ce18bd013db9b7f730b37cf40f4 (diff) | |
download | gcc-e475ed2aecbeed088aebbb8b5ad8543ed32d9879.zip gcc-e475ed2aecbeed088aebbb8b5ad8543ed32d9879.tar.gz gcc-e475ed2aecbeed088aebbb8b5ad8543ed32d9879.tar.bz2 |
(memory_address): Add missing "else".
From-SVN: r9037
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/explow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 78e3797..4d6aac8 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, |