Index: src/x64/full-codegen-x64.cc |
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc |
index a6c3214e41a9155972e711f89a5db2fe6662fde9..d5fa5e5a7ca250543ce1645959151350f0b102cf 100644 |
--- a/src/x64/full-codegen-x64.cc |
+++ b/src/x64/full-codegen-x64.cc |
@@ -3686,42 +3686,6 @@ void FullCodeGenerator::EmitStringCompare(CallRuntime* expr) { |
} |
-void FullCodeGenerator::EmitMathSin(CallRuntime* expr) { |
- // Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::SIN, |
- TranscendentalCacheStub::TAGGED); |
- ZoneList<Expression*>* args = expr->arguments(); |
- ASSERT(args->length() == 1); |
- VisitForStackValue(args->at(0)); |
- __ CallStub(&stub); |
- context()->Plug(rax); |
-} |
- |
- |
-void FullCodeGenerator::EmitMathCos(CallRuntime* expr) { |
- // Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::COS, |
- TranscendentalCacheStub::TAGGED); |
- ZoneList<Expression*>* args = expr->arguments(); |
- ASSERT(args->length() == 1); |
- VisitForStackValue(args->at(0)); |
- __ CallStub(&stub); |
- context()->Plug(rax); |
-} |
- |
- |
-void FullCodeGenerator::EmitMathTan(CallRuntime* expr) { |
- // Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::TAN, |
- TranscendentalCacheStub::TAGGED); |
- ZoneList<Expression*>* args = expr->arguments(); |
- ASSERT(args->length() == 1); |
- VisitForStackValue(args->at(0)); |
- __ CallStub(&stub); |
- context()->Plug(rax); |
-} |
- |
- |
void FullCodeGenerator::EmitMathLog(CallRuntime* expr) { |
// Load the argument on the stack and call the stub. |
TranscendentalCacheStub stub(TranscendentalCache::LOG, |