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

Unified Diff: src/x64/code-stubs-x64.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/runtime/runtime-scopes.cc ('k') | src/x64/interface-descriptors-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/code-stubs-x64.cc
diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc
index ca9ea3bf1ade8658855a5faccc019d760c2c099f..a74f325d3dad35eec1a39733c0d46a626f91675e 100644
--- a/src/x64/code-stubs-x64.cc
+++ b/src/x64/code-stubs-x64.cc
@@ -845,7 +845,6 @@ void RestParamAccessStub::GenerateNew(MacroAssembler* masm) {
// rcx : number of parameters (tagged)
// rdx : parameters pointer
// rbx : rest parameter index (tagged)
- // rdi : language mode (tagged)
// rsp[0] : return address
// Check if the calling frame is an arguments adaptor frame.
@@ -867,7 +866,6 @@ void RestParamAccessStub::GenerateNew(MacroAssembler* masm) {
__ Push(rcx); // Push number of parameters.
__ Push(rdx); // Push parameters pointer.
__ Push(rbx); // Push rest parameter index.
- __ Push(rdi); // Push language mode.
__ PushReturnAddressFrom(rax);
__ TailCallRuntime(Runtime::kNewRestParam);
}
« no previous file with comments | « src/runtime/runtime-scopes.cc ('k') | src/x64/interface-descriptors-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698