Commit 07ed7ecf by Stephen L Moshier Committed by Richard Henderson

m68k.c (const_uint32_operand): Accept any const_int on a 32-bit host.

        * config/m68k/m68k.c (const_uint32_operand): Accept any
        const_int on a 32-bit host.

From-SVN: r40276
parent 805c6c57
2001-03-06 Stephen L Moshier <moshier@mediaone.net>
* config/m68k/m68k.c (const_uint32_operand): Accept any
const_int on a 32-bit host.
2001-03-06 Nicola Pero <n.pero@mi.flashnet.it>
* objc/objc-act.c (init_objc): Set save_lang_status,
......
......@@ -3334,7 +3334,7 @@ const_uint32_operand (op, mode)
return (GET_CODE (op) == CONST_INT
&& (INTVAL (op) >= 0 && INTVAL (op) <= 0xffffffffL));
#else
return ((GET_CODE (op) == CONST_INT && INTVAL (op) >= 0)
return (GET_CODE (op) == CONST_INT
|| (GET_CODE (op) == CONST_DOUBLE && CONST_DOUBLE_HIGH (op) == 0));
#endif
}
......
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