Commit 76052e74 by Richard Stallman

(print_operand): In `r' case, recognize any kind of zero.

From-SVN: r1202
parent 9be8f2c7
......@@ -2750,7 +2750,8 @@ print_operand (file, x, code)
case 'r':
/* In this case we need a register. Use %g0 if the
operand is const0_rtx. */
if (x == const0_rtx)
if (x == const0_rtx
|| (GET_MODE (x) != VOIDmode && x == CONST0_RTX (GET_MODE (x))))
{
fputs ("%g0", file);
return;
......
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