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

Unified Diff: test/cctest/compiler/test-jump-threading.cc

Issue 1259203002: [turbofan] Implement tail calls with differing stack parameter counts (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix bugs in frameless tail calls Created 5 years, 5 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: test/cctest/compiler/test-jump-threading.cc
diff --git a/test/cctest/compiler/test-jump-threading.cc b/test/cctest/compiler/test-jump-threading.cc
index 9fa3c9f28a6a26b5e3b3d4bacb27a91e5b0f32c9..f7eb3aba5773a1ff0850782226ad215f627ed605 100644
--- a/test/cctest/compiler/test-jump-threading.cc
+++ b/test/cctest/compiler/test-jump-threading.cc
@@ -18,7 +18,7 @@ class TestCode : public HandleAndZoneScope {
TestCode()
: HandleAndZoneScope(),
blocks_(main_zone()),
- sequence_(main_isolate(), main_zone(), &blocks_),
+ sequence_(main_isolate(), main_zone(), &blocks_, nullptr),
rpo_number_(RpoNumber::FromInt(0)),
current_(NULL) {}

Powered by Google App Engine
This is Rietveld 408576698