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

Unified Diff: src/deoptimizer.cc

Issue 1859763005: [crankshaft] Fix environment handling after leaving inlined tail call. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/crankshaft/lithium.cc ('k') | test/mjsunit/regress/regress-crbug-537444.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/deoptimizer.cc
diff --git a/src/deoptimizer.cc b/src/deoptimizer.cc
index 2c330e378d0ce40568787f326693e80d48a4b664..a8405daee32428d8e52f4d32b5fceaf73bf04c92 100644
--- a/src/deoptimizer.cc
+++ b/src/deoptimizer.cc
@@ -1430,7 +1430,7 @@ void Deoptimizer::DoComputeTailCallerFrame(TranslatedFrame* translated_frame,
bool is_bottommost = (0 == frame_index);
// Tail caller frame can't be topmost.
- DCHECK_NE(output_count_ - 1, frame_index);
+ CHECK_NE(output_count_ - 1, frame_index);
if (trace_scope_ != NULL) {
PrintF(trace_scope_->file(), " translating tail caller frame ");
« no previous file with comments | « src/crankshaft/lithium.cc ('k') | test/mjsunit/regress/regress-crbug-537444.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698