summaryrefslogtreecommitdiff
path: root/compiler/optimizing/induction_var_analysis.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2015-12-29 16:12:27 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2015-12-31 15:28:48 +0000
commitb35302b9f79a4b9bcc980051f67e5495a03289c3 (patch)
tree8a578febc1967aab22678814f45f355566b37ba5 /compiler/optimizing/induction_var_analysis.cc
parente38e4b467bdcca1bf5f8b80adc66d3064fa9cf45 (diff)
Remove bogus DCHECK in induction analysis.
Method is called during BCE, which may change the graph in non-SSA form temporarily. Change-Id: I84bed7d3370c6871dc2d3b883d0aca90b3a37696
Diffstat (limited to 'compiler/optimizing/induction_var_analysis.cc')
-rw-r--r--compiler/optimizing/induction_var_analysis.cc1
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;