summaryrefslogtreecommitdiff
path: root/gcc/recog.c
diff options
context:
space:
mode:
authoruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>2002-11-20 17:05:08 +0000
committeruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>2002-11-20 17:05:08 +0000
commit13de7ba99d7d3ecb0e658e7b1294016dfc14a1ff (patch)
tree5a21a5b3ce2e1fa3f82d686ad108412c7de37ff7 /gcc/recog.c
parentf851ffbfdbf05aefe9acc61f2645a3318e3c201c (diff)
downloadgcc-13de7ba99d7d3ecb0e658e7b1294016dfc14a1ff.tar.gz
* recog.c (constrain_operands): Prefer exact match over reloadable
EXTRA_MEMORY_CONSTRAINT or EXTRA_ADDRESS_CONSTRAINT. * reload.c (find_reloads): Always reload EXTRA_ADDRESS_CONSTRAINT operands in Pmode. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59308 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/recog.c')
-rw-r--r--gcc/recog.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/gcc/recog.c b/gcc/recog.c
index 649f3665d10..d1db9c4e69d 100644
--- a/gcc/recog.c
+++ b/gcc/recog.c
@@ -2628,23 +2628,23 @@ constrain_operands (strict)
if (EXTRA_MEMORY_CONSTRAINT (c))
{
- /* Every memory operand can be reloaded to fit,
- so copy the condition from the 'm' case. */
- if (GET_CODE (op) == MEM
- /* Before reload, accept what reload can turn into mem. */
- || (strict < 0 && CONSTANT_P (op))
- /* During reload, accept a pseudo */
- || (reload_in_progress && GET_CODE (op) == REG
- && REGNO (op) >= FIRST_PSEUDO_REGISTER))
+ /* Every memory operand can be reloaded to fit. */
+ if (strict < 0 && GET_CODE (op) == MEM)
+ win = 1;
+
+ /* Before reload, accept what reload can turn into mem. */
+ if (strict < 0 && CONSTANT_P (op))
+ win = 1;
+
+ /* During reload, accept a pseudo */
+ if (reload_in_progress && GET_CODE (op) == REG
+ && REGNO (op) >= FIRST_PSEUDO_REGISTER)
win = 1;
}
if (EXTRA_ADDRESS_CONSTRAINT (c))
{
- /* Every address operand can be reloaded to fit,
- so copy the condition from the 'p' case. */
- if (strict <= 0
- || (strict_memory_address_p (recog_data.operand_mode[opno],
- op)))
+ /* Every address operand can be reloaded to fit. */
+ if (strict < 0)
win = 1;
}
#endif