Commit a2574dbe by Torbjorn Granlund

(input_operand): If TARGET_BYTE_OPS accept HImode and QImode.

From-SVN: r13148
parent b7747781
......@@ -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);
......
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