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

Unified Diff: src/compiler/register-allocator-verifier.cc

Issue 2638393002: [builtins] Add String.prototype.indexOf fast path in TF (Closed)
Patch Set: update comments Created 3 years, 11 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/register-allocator-verifier.cc
diff --git a/src/compiler/register-allocator-verifier.cc b/src/compiler/register-allocator-verifier.cc
index 5a2ed93827c08a8912a703463ce73fa492d4fc1d..39ba12d7073941b17ee50e083f6654d2d5e60368 100644
--- a/src/compiler/register-allocator-verifier.cc
+++ b/src/compiler/register-allocator-verifier.cc
@@ -343,8 +343,7 @@ BlockAssessments* RegisterAllocatorVerifier::CreateForBlock(
auto iterator = assessments_.find(pred_id);
if (iterator == assessments_.end()) {
// This block is the head of a loop, and this predecessor is the
- // loopback
- // arc.
+ // loopback arc.
Benedikt Meurer 2017/01/18 18:10:41 Can you revert this change? It's a bit confusing t
Camillo Bruni 2017/01/24 15:51:43 excluded.
// Validate this is a loop case, otherwise the CFG is malformed.
CHECK(pred_id >= current_block_id);
CHECK(block->IsLoopHeader());

Powered by Google App Engine
This is Rietveld 408576698