(input_operand): Allow a SYMBOL_REF referring to a symbol in the TOC.

From-SVN: r8542
This commit is contained in:
Richard Kenner 1994-11-21 17:43:56 -05:00
parent 47b34d4024
commit 84cf9ddab3

View File

@ -533,6 +533,10 @@ input_operand (op, mode)
&& GET_CODE (op) == CONST_INT)
return 1;
/* A SYMBOL_REF referring to the TOC is valid. */
if (GET_CODE (op) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (op))
return 1;
/* Otherwise, we will be doing this SET with an add, so anything valid
for an add will be valid. */
return add_operand (op, mode);