(input_operand): If TARGET_BYTE_OPS accept HImode and QImode.

From-SVN: r13148
This commit is contained in:
Torbjorn Granlund 1996-11-12 22:52:45 +00:00
parent b774778146
commit a2574dbebf

View File

@ -447,7 +447,8 @@ input_operand (op, mode)
return 1;
/* ... fall through ... */
case MEM:
return mode != HImode && mode != QImode && general_operand (op, mode);
return (TARGET_BYTE_OPS || (mode != HImode && mode != QImode)
&& general_operand (op, mode));
case CONST_DOUBLE:
return GET_MODE_CLASS (mode) == MODE_FLOAT && op == CONST0_RTX (mode);