Commit e475ed2a by Richard Kenner

(memory_address): Add missing "else".

From-SVN: r9037
parent 5bdc1512
/* 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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment