Commit b49a8bf4 by Michael Meissner

Fix recent breakage

From-SVN: r10691
parent 481a49d6
......@@ -790,9 +790,8 @@ input_operand (op, mode)
if (register_operand (op, mode))
return 1;
/* For HImode and QImode, any constant is valid. */
if ((mode == HImode || mode == QImode)
&& GET_CODE (op) == CONST_INT)
/* For integer modes, any constant is ok. */
if (GET_CODE (op) == CONST_INT)
return 1;
/* A SYMBOL_REF referring to the TOC is valid. */
......
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