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

Unified Diff: src/compiler/verifier.cc

Issue 1114163005: [turbofan] Fix tail call optimization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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 b86bba93b05dbdb8c78527fad098ea6bd5a79e40..4dd0b6470648e6799ef4ce50c657cc7f9b9064bd 100644
--- a/src/compiler/verifier.cc
+++ b/src/compiler/verifier.cc
@@ -430,6 +430,9 @@ void Verifier::Visitor::Check(Node* node) {
case IrOpcode::kCall:
// TODO(rossberg): what are the constraints on these?
break;
+ case IrOpcode::kTailCall:
+ // TODO(bmeurer): what are the constraints on these?
+ break;
// JavaScript operators
// --------------------

Powered by Google App Engine
This is Rietveld 408576698