Commit 5b486ce0 by Richard Kenner

(reg_or_0_operand): Integer CONST_DOUBLE is DImode.

From-SVN: r7834
parent b030b8c2
......@@ -217,7 +217,7 @@ reg_or_0_operand (op, mode)
{
if (op == const0_rtx || register_operand (op, mode))
return 1;
if (GET_MODE (op) == DImode && GET_CODE (op) == CONST_DOUBLE
if (GET_MODE (op) == VOIDmode && GET_CODE (op) == CONST_DOUBLE
&& CONST_DOUBLE_HIGH (op) == 0
&& CONST_DOUBLE_LOW (op) == 0)
return 1;
......
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