Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index ef4f0c5f2b662e0f7a5a86a1213043202b01db13..919cca23e047b1ec535f08d367a057f89f9dc277 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -2883,7 +2883,7 @@ void FullCodeGenerator::EmitMathPow(CallRuntime* expr) { |
VisitForStackValue(args->at(1)); |
if (CpuFeatures::IsSupported(SSE2)) { |
- MathPowStub stub; |
+ MathPowStub stub(MathPowStub::ON_STACK); |
__ CallStub(&stub); |
} else { |
__ CallRuntime(Runtime::kMath_pow, 2); |