Index: src/conversions-inl.h |
diff --git a/src/conversions-inl.h b/src/conversions-inl.h |
index 43363f3738a77dec17b200106555812bf38470d4..63f84f4ecc64ff4d49b1e05e011ff15a28f5ea07 100644 |
--- a/src/conversions-inl.h |
+++ b/src/conversions-inl.h |
@@ -58,7 +58,7 @@ inline unsigned int FastD2UI(double x) { |
Address mantissa_ptr = reinterpret_cast<Address>(&x) + kIntSize; |
#endif |
// Copy least significant 32 bits of mantissa. |
- OS::MemCopy(&result, mantissa_ptr, sizeof(result)); |
+ MemCopy(&result, mantissa_ptr, sizeof(result)); |
return negative ? ~result + 1 : result; |
} |
// Large number (outside uint32 range), Infinity or NaN. |