Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 8e4df625776840b7023a41f947d9105a3954927e..4e0da2a3c941bf4c95bc7f740f3ba75f678e4023 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -555,6 +555,12 @@ Callable CodeFactory::HasProperty(Isolate* isolate) { |
} |
// static |
+Callable CodeFactory::MathPow(Isolate* isolate) { |
+ MathPowStub stub(isolate, MathPowStub::ON_STACK); |
+ return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
+} |
+ |
+// static |
Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate, |
TailCallMode tail_call_mode) { |
return Callable( |