Index: src/arm/code-stubs-arm.cc |
=================================================================== |
--- src/arm/code-stubs-arm.cc (revision 10399) |
+++ src/arm/code-stubs-arm.cc (working copy) |
@@ -717,7 +717,7 @@ |
// Get the absolute value of the object (as an unsigned integer). |
__ rsb(int_scratch, int_scratch, Operand::Zero(), SetCC, mi); |
- // Get mantisssa[51:20]. |
+ // Get mantissa[51:20]. |
// Get the position of the first set bit. |
__ CountLeadingZeros(dst1, int_scratch, scratch2); |
@@ -951,7 +951,7 @@ |
// non zero bits left. So we need the (30 - exponent) last bits of the |
// 31 higher bits of the mantissa to be null. |
// Because bits [21:0] are null, we can check instead that the |
- // (32 - exponent) last bits of the 32 higher bits of the mantisssa are null. |
+ // (32 - exponent) last bits of the 32 higher bits of the mantissa are null. |
// Get the 32 higher bits of the mantissa in dst. |
__ Ubfx(dst, |
@@ -4510,7 +4510,7 @@ |
__ Ret(); |
// Do the runtime call to allocate the arguments object. |
- // r2 = argument count (taggged) |
+ // r2 = argument count (tagged) |
__ bind(&runtime); |
__ str(r2, MemOperand(sp, 0 * kPointerSize)); // Patch argument count. |
__ TailCallRuntime(Runtime::kNewArgumentsFast, 3, 1); |