Index: src/runtime/runtime-maths.cc |
diff --git a/src/runtime/runtime-maths.cc b/src/runtime/runtime-maths.cc |
index 4cdf5100c6b684e5790eb836a9d0d59cea5175fe..91b6181ab7aba5a6e0f10efce2b88f1cdebacb77 100644 |
--- a/src/runtime/runtime-maths.cc |
+++ b/src/runtime/runtime-maths.cc |
@@ -108,17 +108,6 @@ RUNTIME_FUNCTION(Runtime_MathExpRT) { |
} |
-RUNTIME_FUNCTION(Runtime_MathClz32) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 1); |
- isolate->counters()->math_clz32_runtime()->Increment(); |
- |
- CONVERT_NUMBER_CHECKED(uint32_t, x, Uint32, args[0]); |
- return *isolate->factory()->NewNumberFromUint( |
- base::bits::CountLeadingZeros32(x)); |
-} |
- |
- |
// Slow version of Math.pow. We check for fast paths for special cases. |
// Used if VFP3 is not available. |
RUNTIME_FUNCTION(Runtime_MathPow) { |