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

Unified Diff: src/compiler/verifier.cc

Issue 1323463005: [Interpreter] Add support for JS calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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
Index: src/compiler/verifier.cc
diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
index 595d9be0d0d825132f0f0b828219c079f42b21c5..9abe2f857a0bead28edc2be8d97531df34393476 100644
--- a/src/compiler/verifier.cc
+++ b/src/compiler/verifier.cc
@@ -449,6 +449,9 @@ void Verifier::Visitor::Check(Node* node) {
case IrOpcode::kTailCall:
// TODO(bmeurer): what are the constraints on these?
break;
+ case IrOpcode::kCallVarArgs:
+ // TODO(rossberg): what are the constraints on these?
+ break;
// JavaScript operators
// --------------------

Powered by Google App Engine
This is Rietveld 408576698