From: Jeff Law Date: Tue, 21 May 1996 17:43:15 +0000 (-0600) Subject: * pa/pa.c (basereg_operand): Never accept a CONST_INT. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b6a438a4160524b62bb7dcd5f5236640ed79610;p=gcc.git * pa/pa.c (basereg_operand): Never accept a CONST_INT. From-SVN: r12067 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index c27b2224e13..52375af161d 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)