Commit 5b6a438a by Jeff Law

* pa/pa.c (basereg_operand): Never accept a CONST_INT.

From-SVN: r12067
parent 7d94bb81
...@@ -4956,7 +4956,7 @@ basereg_operand (op, mode) ...@@ -4956,7 +4956,7 @@ basereg_operand (op, mode)
selection using the basereg only (rather than effective address) selection using the basereg only (rather than effective address)
screwing us over. */ screwing us over. */
if (TARGET_NO_SPACE_REGS || reload_in_progress || reload_completed) 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. */ /* Stack is always OK for indexing. */
if (op == stack_pointer_rtx) if (op == stack_pointer_rtx)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment