Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index 7a4764478195d36da14e02531169aad48c8264d7..f172c30cb5b10f7ef921e24297660d3daaf06251 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -3038,7 +3038,8 @@ void FullCodeGenerator::EmitStringCompare(ZoneList<Expression*>* args) { |
void FullCodeGenerator::EmitMathSin(ZoneList<Expression*>* args) { |
// Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::SIN); |
+ TranscendentalCacheStub stub(TranscendentalCache::SIN, |
+ TranscendentalCacheStub::TAGGED); |
ASSERT(args->length() == 1); |
VisitForStackValue(args->at(0)); |
__ CallStub(&stub); |
@@ -3048,7 +3049,8 @@ void FullCodeGenerator::EmitMathSin(ZoneList<Expression*>* args) { |
void FullCodeGenerator::EmitMathCos(ZoneList<Expression*>* args) { |
// Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::COS); |
+ TranscendentalCacheStub stub(TranscendentalCache::COS, |
+ TranscendentalCacheStub::TAGGED); |
ASSERT(args->length() == 1); |
VisitForStackValue(args->at(0)); |
__ CallStub(&stub); |
@@ -3058,7 +3060,8 @@ void FullCodeGenerator::EmitMathCos(ZoneList<Expression*>* args) { |
void FullCodeGenerator::EmitMathLog(ZoneList<Expression*>* args) { |
// Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::LOG); |
+ TranscendentalCacheStub stub(TranscendentalCache::LOG, |
+ TranscendentalCacheStub::TAGGED); |
ASSERT(args->length() == 1); |
VisitForStackValue(args->at(0)); |
__ CallStub(&stub); |