From c02a7fbba26180914809310ae54ac3cded7a56f3 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 10 Feb 1994 08:49:33 -0500 Subject: [PATCH] (memory_address): Fix error in last change. From-SVN: r6520 --- gcc/explow.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/gcc/explow.c b/gcc/explow.c index 64431a69285..96c7c1269c7 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: -- 2.30.2