| Index: src/full-codegen/ia32/full-codegen-ia32.cc
|
| diff --git a/src/full-codegen/ia32/full-codegen-ia32.cc b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| index e1045a80a686e7a5c62b41b112a0cb42664118ff..210d2a57a05e49b35c35302a71c86295b9cc8c78 100644
|
| --- a/src/full-codegen/ia32/full-codegen-ia32.cc
|
| +++ b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| @@ -275,29 +275,6 @@ void FullCodeGenerator::Generate() {
|
| SetVar(new_target_var, eax, ebx, edx);
|
| }
|
|
|
| -
|
| - // 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;
|
| -
|
| - __ lea(edx,
|
| - Operand(ebp, StandardFrameConstants::kCallerSPOffset + offset));
|
| - __ push(edx);
|
| - __ push(Immediate(Smi::FromInt(num_parameters)));
|
| - __ push(Immediate(Smi::FromInt(rest_index)));
|
| - __ push(Immediate(Smi::FromInt(language_mode())));
|
| -
|
| - RestParamAccessStub stub(isolate());
|
| - __ CallStub(&stub);
|
| -
|
| - SetVar(rest_param, eax, ebx, edx);
|
| - }
|
| -
|
| Variable* arguments = scope()->arguments();
|
| if (arguments != NULL) {
|
| // Function uses arguments object.
|
|
|