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 39d4f0cf7411ac21a1426016d6e71e5c9879162a..79a69ef3a8fff6ce69df0bafe396c2de7cd16c2d 100644 |
--- a/src/full-codegen/x64/full-codegen-x64.cc |
+++ b/src/full-codegen/x64/full-codegen-x64.cc |
@@ -271,28 +271,6 @@ void FullCodeGenerator::Generate() { |
SetVar(new_target_var, rax, rbx, rdx); |
} |
- // Possibly allocate RestParameters |
- int rest_index; |
- Variable* rest_param = scope()->rest_parameter(&rest_index); |
- if (rest_param) { |
- Comment cmnt(masm_, "[ Allocate rest parameter array"); |
- |
- int num_parameters = info->scope()->num_parameters(); |
- int offset = num_parameters * kPointerSize; |
- |
- __ leap(rdx, |
- Operand(rbp, StandardFrameConstants::kCallerSPOffset + offset)); |
- __ Push(rdx); |
- __ Push(Smi::FromInt(num_parameters)); |
- __ Push(Smi::FromInt(rest_index)); |
- __ Push(Smi::FromInt(language_mode())); |
- |
- RestParamAccessStub stub(isolate()); |
- __ CallStub(&stub); |
- |
- SetVar(rest_param, rax, rbx, rdx); |
- } |
- |
// Possibly allocate an arguments object. |
Variable* arguments = scope()->arguments(); |
if (arguments != NULL) { |