Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: src/arm/code-stubs-arm.cc

Issue 1559903003: Remove strong mode support from rest argument creation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: nit. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/arm/interface-descriptors-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/code-stubs-arm.cc
diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc
index 4ada3482e29a4b752cb0e602040591f27556c323..21413335ea0764e443d50c9a02523a8755d0361b 100644
--- a/src/arm/code-stubs-arm.cc
+++ b/src/arm/code-stubs-arm.cc
@@ -1857,7 +1857,6 @@ void RestParamAccessStub::GenerateNew(MacroAssembler* masm) {
// r2 : number of parameters (tagged)
// r3 : parameters pointer
// r4 : rest parameter index (tagged)
- // r1 : language mode (tagged)
Label runtime;
__ ldr(r5, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
@@ -1871,7 +1870,7 @@ void RestParamAccessStub::GenerateNew(MacroAssembler* masm) {
__ add(r3, r3, Operand(StandardFrameConstants::kCallerSPOffset));
__ bind(&runtime);
- __ Push(r2, r3, r4, r1);
+ __ Push(r2, r3, r4);
__ TailCallRuntime(Runtime::kNewRestParam);
}
« no previous file with comments | « no previous file | src/arm/interface-descriptors-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698