Version 3.24.6

Performance and stability improvements on all platforms.

git-svn-id: http://v8.googlecode.com/svn/trunk@18396 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/conversions.h b/src/conversions.h
index 7aa2d3f..f850f58 100644
--- a/src/conversions.h
+++ b/src/conversions.h
@@ -72,7 +72,7 @@
 // The result is unspecified if x is infinite or NaN, or if the rounded
 // integer value is outside the range of type int.
 inline int FastD2I(double x) {
-  return static_cast<int>(x);
+  return static_cast<int32_t>(x);
 }
 
 inline unsigned int FastD2UI(double x);