Commit 07c109c8 by Jim Wilson

(arith_reg_operand): Disallow MACH_REG and MACL_REG.

From-SVN: r8556
parent fb3eb6f6
......@@ -2365,7 +2365,9 @@ arith_reg_operand (op, mode)
{
if (GET_CODE (op) == REG)
return (REGNO (op) != T_REG
&& REGNO (op) != PR_REG);
&& REGNO (op) != PR_REG
&& REGNO (op) != MACH_REG
&& REGNO (op) != MACL_REG);
return 1;
}
return 0;
......
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