diff options
author | 2016-01-04 08:24:30 +0000 | |
---|---|---|
committer | 2016-01-04 08:24:30 +0000 | |
commit | b7371a5517f78f61759f7e6124f2d957d974d9cd (patch) | |
tree | a6e86275880cbdd0a08e732f467ad236f7021f84 /compiler/optimizing/induction_var_analysis.cc | |
parent | 4bb356123b13ec5f41ea80158766df676ae08679 (diff) | |
parent | b35302b9f79a4b9bcc980051f67e5495a03289c3 (diff) |
Merge "Remove bogus DCHECK in induction analysis."
Diffstat (limited to 'compiler/optimizing/induction_var_analysis.cc')
-rw-r--r-- | compiler/optimizing/induction_var_analysis.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/optimizing/induction_var_analysis.cc b/compiler/optimizing/induction_var_analysis.cc index 19e6cbd314..eef6cef5f0 100644 --- a/compiler/optimizing/induction_var_analysis.cc +++ b/compiler/optimizing/induction_var_analysis.cc @@ -706,7 +706,6 @@ HInductionVarAnalysis::InductionInfo* HInductionVarAnalysis::LookupInfo(HLoopInf } } if (loop->IsDefinedOutOfTheLoop(instruction)) { - DCHECK(instruction->GetBlock()->Dominates(loop->GetPreHeader())); InductionInfo* info = CreateInvariantFetch(instruction); AssignInfo(loop, instruction, info); return info; |