Commit 42add480 by Tom Wood

(find_reloads): Ignore `%' in the last operand after

        warning.

From-SVN: r1830
parent ae3c61fa
......@@ -2340,7 +2340,9 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
break;
case '%':
commutative = i;
/* The last operand should not be marked commutative. */
if (i != noperands - 1)
commutative = i;
break;
case '?':
......
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