Index: src/runtime/runtime-maths.cc |
diff --git a/src/runtime/runtime-maths.cc b/src/runtime/runtime-maths.cc |
index 889a016b2e3a65f633fdbcb6ca6e160290c70a66..faf0ba84a415317dc347e3a7051864def22239d6 100644 |
--- a/src/runtime/runtime-maths.cc |
+++ b/src/runtime/runtime-maths.cc |
@@ -119,16 +119,6 @@ RUNTIME_FUNCTION(Runtime_MathClz32) { |
} |
-RUNTIME_FUNCTION(Runtime_MathFloor) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 1); |
- isolate->counters()->math_floor_runtime()->Increment(); |
- |
- CONVERT_DOUBLE_ARG_CHECKED(x, 0); |
- return *isolate->factory()->NewNumber(Floor(x)); |
-} |
- |
- |
// Slow version of Math.pow. We check for fast paths for special cases. |
// Used if VFP3 is not available. |
RUNTIME_FUNCTION(Runtime_MathPow) { |