Index: src/x64/full-codegen-x64.cc |
=================================================================== |
--- src/x64/full-codegen-x64.cc (revision 6962) |
+++ src/x64/full-codegen-x64.cc (working copy) |
@@ -2709,7 +2709,8 @@ |
ASSERT(args->length() == 2); |
VisitForStackValue(args->at(0)); |
VisitForStackValue(args->at(1)); |
- __ CallRuntime(Runtime::kMath_pow, 2); |
+ MathPowStub stub; |
+ __ CallStub(&stub); |
context()->Plug(rax); |
} |