* expmed.c (synth_mult): Fix comment about multiplying by T-1 and
adding T or multiplying by T+1 and subracting T.
From-SVN: r221588
+2015-03-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
+
+ * expmed.c (synth_mult): Fix comment about multiplying by T-1 and
+ adding T or multiplying by T+1 and subracting T.
+
2015-03-22 Jeff Law <law@redhat.com>
PR rtl-optimization/64317
Thus we prefer addition in that case. */
&& t != 3))
{
- /* T ends with ...111. Multiply by (T + 1) and subtract 1. */
+ /* T ends with ...111. Multiply by (T + 1) and subtract T. */
op_cost = add_cost (speed, mode);
new_limit.cost = best_cost.cost - op_cost;
}
else
{
- /* T ends with ...01 or ...011. Multiply by (T - 1) and add 1. */
+ /* T ends with ...01 or ...011. Multiply by (T - 1) and add T. */
op_cost = add_cost (speed, mode);
new_limit.cost = best_cost.cost - op_cost;