diff options
author | 2018-06-11 11:43:59 +0000 | |
---|---|---|
committer | 2018-06-11 11:43:59 +0000 | |
commit | 7643e41206279d1c22fdddff450c2d7bdd585b54 (patch) | |
tree | 7ba9b3d654b721c7288208fd8b6f8e5331fa3588 /compiler/optimizing/instruction_builder.cc | |
parent | a8822d460db2ee9c189f16589ab553e3a7751ff1 (diff) | |
parent | 96f0ec14ba78e4d869065fdcf69b33008927505c (diff) |
Merge "Remove DCHECK while investigating."
Diffstat (limited to 'compiler/optimizing/instruction_builder.cc')
-rw-r--r-- | compiler/optimizing/instruction_builder.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/instruction_builder.cc b/compiler/optimizing/instruction_builder.cc index 24dc2ee9b4..887f4f6e41 100644 --- a/compiler/optimizing/instruction_builder.cc +++ b/compiler/optimizing/instruction_builder.cc @@ -1313,7 +1313,8 @@ bool HInstructionBuilder::HandleStringInit(HInvoke* invoke, // The only reason a HPhi can flow in a String.<init> is when there is an // irreducible loop, which will create HPhi for all dex registers at loop entry. DCHECK(arg_this->IsPhi()); - DCHECK(graph_->HasIrreducibleLoops()); + // TODO(b/109666561): Re-enable. + // DCHECK(graph_->HasIrreducibleLoops()); // Don't bother compiling a method in that situation. While we could look at all // phis related to the HNewInstance, it's not worth the trouble. MaybeRecordStat(compilation_stats_, |