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

Unified Diff: src/arm64/builtins-arm64.cc

Issue 1481773003: [Proxies] Support constructable proxy as new.target (reland) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Diff with previous version Created 5 years, 1 month 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
Index: src/arm64/builtins-arm64.cc
diff --git a/src/arm64/builtins-arm64.cc b/src/arm64/builtins-arm64.cc
index 20cf9cde9b05400f4e51b02eb9edcf9e58d7803c..90014ffe0a43828b0d71ac24e9e423a40b83c4f4 100644
--- a/src/arm64/builtins-arm64.cc
+++ b/src/arm64/builtins-arm64.cc
@@ -1740,10 +1740,9 @@ void Builtins::Generate_ConstructFunction(MacroAssembler* masm) {
// ----------- S t a t e -------------
// -- x0 : the number of arguments (not including the receiver)
// -- x1 : the constructor to call (checked to be a JSFunction)
- // -- x3 : the new target (checked to be a JSFunction)
+ // -- x3 : the new target (checked to be a constructor)
// -----------------------------------
__ AssertFunction(x1);
- __ AssertFunction(x3);
// Calling convention for function specific ConstructStubs require
// x2 to contain either an AllocationSite or undefined.

Powered by Google App Engine
This is Rietveld 408576698