aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-02-10 08:49:33 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-02-10 08:49:33 -0500
commitc02a7fbba26180914809310ae54ac3cded7a56f3 (patch)
tree9aaa8f2682d8a41f6b13b4a85d6dcd865db6985a /gcc
parent41109364f57e758fb7afd2c4c519a7f4b6c6cd48 (diff)
downloadgcc-c02a7fbba26180914809310ae54ac3cded7a56f3.zip
gcc-c02a7fbba26180914809310ae54ac3cded7a56f3.tar.gz
gcc-c02a7fbba26180914809310ae54ac3cded7a56f3.tar.bz2
(memory_address): Fix error in last change.
From-SVN: r6520
Diffstat (limited to 'gcc')
-rw-r--r--gcc/explow.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index 64431a6..96c7c12 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -416,21 +416,21 @@ memory_address (mode, x)
x = force_reg (Pmode, x);
goto done;
- }
- win2:
- x = oldx;
- win:
- if (flag_force_addr && ! cse_not_expected && GET_CODE (x) != REG
- /* Don't copy an addr via a reg if it is one of our stack slots. */
- && ! (GET_CODE (x) == PLUS
- && (XEXP (x, 0) == virtual_stack_vars_rtx
- || XEXP (x, 0) == virtual_incoming_args_rtx)))
- {
- if (general_operand (x, Pmode))
- x = force_reg (Pmode, x);
- else
- x = force_operand (x, NULL_RTX);
+ win2:
+ x = oldx;
+ win:
+ if (flag_force_addr && ! cse_not_expected && GET_CODE (x) != REG
+ /* Don't copy an addr via a reg if it is one of our stack slots. */
+ && ! (GET_CODE (x) == PLUS
+ && (XEXP (x, 0) == virtual_stack_vars_rtx
+ || XEXP (x, 0) == virtual_incoming_args_rtx)))
+ {
+ if (general_operand (x, Pmode))
+ x = force_reg (Pmode, x);
+ else
+ x = force_operand (x, NULL_RTX);
+ }
}
done: