From 5b6a438a4160524b62bb7dcd5f5236640ed79610 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 21 May 1996 11:43:15 -0600 Subject: [PATCH] * pa/pa.c (basereg_operand): Never accept a CONST_INT. From-SVN: r12067 --- gcc/config/pa/pa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index c27b222..52375af 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -4956,7 +4956,7 @@ basereg_operand (op, mode) selection using the basereg only (rather than effective address) screwing us over. */ if (TARGET_NO_SPACE_REGS || reload_in_progress || reload_completed) - return (GET_CODE (op) == REG || GET_CODE (op) == CONST_INT); + return (GET_CODE (op) == REG); /* Stack is always OK for indexing. */ if (op == stack_pointer_rtx) -- 2.7.4