| Index: runtime/vm/intermediate_language_mips.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_mips.cc (revision 36030)
|
| +++ runtime/vm/intermediate_language_mips.cc (working copy)
|
| @@ -570,7 +570,7 @@
|
| case GT: __ coltd(right, left); break;
|
| case GE: __ coled(right, left); break;
|
| default: {
|
| - // Should only passing the above conditions to this function.
|
| + // We should only be passing the above conditions to this function.
|
| UNREACHABLE();
|
| break;
|
| }
|
| @@ -2804,7 +2804,9 @@
|
| }
|
|
|
| value = value + kSmiTagSize;
|
| - if (value >= kCountLimit) value = kCountLimit;
|
| + if (value >= kCountLimit) {
|
| + value = kCountLimit;
|
| + }
|
|
|
| __ sra(result, left, value);
|
| __ SmiTag(result);
|
|
|