| Index: src/full-codegen/x64/full-codegen-x64.cc
|
| diff --git a/src/full-codegen/x64/full-codegen-x64.cc b/src/full-codegen/x64/full-codegen-x64.cc
|
| index d27e6a79803c0147527096fc7165b4f8ebbad2cb..6497044588be67f4f159676c7b5380cc9a75affb 100644
|
| --- a/src/full-codegen/x64/full-codegen-x64.cc
|
| +++ b/src/full-codegen/x64/full-codegen-x64.cc
|
| @@ -3051,28 +3051,6 @@ void FullCodeGenerator::EmitValueOf(CallRuntime* expr) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitIsDate(CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK_EQ(1, args->length());
|
| -
|
| - VisitForAccumulatorValue(args->at(0));
|
| -
|
| - Label materialize_true, materialize_false;
|
| - Label* if_true = nullptr;
|
| - Label* if_false = nullptr;
|
| - Label* fall_through = nullptr;
|
| - context()->PrepareTest(&materialize_true, &materialize_false, &if_true,
|
| - &if_false, &fall_through);
|
| -
|
| - __ JumpIfSmi(rax, if_false);
|
| - __ CmpObjectType(rax, JS_DATE_TYPE, rbx);
|
| - PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
| - Split(equal, if_true, if_false, fall_through);
|
| -
|
| - context()->Plug(if_true, if_false);
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::EmitOneByteSeqStringSetChar(CallRuntime* expr) {
|
| ZoneList<Expression*>* args = expr->arguments();
|
| DCHECK_EQ(3, args->length());
|
|
|