| Index: src/x64/full-codegen-x64.cc
|
| diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc
|
| index 963912f66a9a74dc73ad74b8af32efabf514cccb..24df20ba767bd76df3fe06cbae9109d56afe6512 100644
|
| --- a/src/x64/full-codegen-x64.cc
|
| +++ b/src/x64/full-codegen-x64.cc
|
| @@ -2820,7 +2820,7 @@ void FullCodeGenerator::EmitMathPow(CallRuntime* expr) {
|
| ASSERT(args->length() == 2);
|
| VisitForStackValue(args->at(0));
|
| VisitForStackValue(args->at(1));
|
| - MathPowStub stub;
|
| + MathPowStub stub(MathPowStub::ON_STACK);
|
| __ CallStub(&stub);
|
| context()->Plug(rax);
|
| }
|
|
|