Commit 6ab911bb by Joern Rennecke

(shl_and_kind): typo fix.

From-SVN: r13556
parent 2aecf81d
...@@ -1158,7 +1158,7 @@ shl_and_kind (left_rtx, mask_rtx, attrp) ...@@ -1158,7 +1158,7 @@ shl_and_kind (left_rtx, mask_rtx, attrp)
if (i > right) if (i > right)
break; break;
cost = (i != 0) + (CONST_OK_FOR_I (mask >> i) ? 2 : 3) cost = (i != 0) + (CONST_OK_FOR_I (mask >> i) ? 2 : 3)
+ (can_ext ? ext_shift_insns : shift_insns)[left]; + (can_ext ? ext_shift_insns : shift_insns)[left + i];
if (cost < best_cost) if (cost < best_cost)
{ {
best = 4 - can_ext; best = 4 - can_ext;
......
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