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

Unified Diff: src/mips/code-stubs-mips.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 | « src/interface-descriptors.cc ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/code-stubs-mips.cc
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
index f3f00e1f6e2b5f4d7581307e11d4f7b6f57ccb2f..f88d3bd5b4455c544af3bdb777e0b036ed61c1f0 100644
--- a/src/mips/code-stubs-mips.cc
+++ b/src/mips/code-stubs-mips.cc
@@ -1970,7 +1970,6 @@ void RestParamAccessStub::GenerateNew(MacroAssembler* masm) {
// a2 : number of parameters (tagged)
// a3 : parameters pointer
// a1 : rest parameter index (tagged)
- // a0 : language mode (tagged)
// Check if the calling frame is an arguments adaptor frame.
Label runtime;
@@ -1987,7 +1986,7 @@ void RestParamAccessStub::GenerateNew(MacroAssembler* masm) {
// Do the runtime call to allocate the arguments object.
__ bind(&runtime);
- __ Push(a2, a3, a1, a0);
+ __ Push(a2, a3, a1);
__ TailCallRuntime(Runtime::kNewRestParam);
}
« no previous file with comments | « src/interface-descriptors.cc ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698