diff options
author | 2017-06-30 09:11:55 +0000 | |
---|---|---|
committer | 2017-06-30 09:11:55 +0000 | |
commit | 4aa0cf8d72386bc2bc42f437919a66ec392eca21 (patch) | |
tree | 8032373cf5073225b8d6082d98760a3a4c3f4e09 /compiler/optimizing/ssa_liveness_analysis.cc | |
parent | 5f17267621174ac22ab53f02b3a5e1ee54308775 (diff) | |
parent | c9c310487b8730fce5edfa72e79c4188629898a3 (diff) |
Merge "Turn a few DCHECK into CHECKs."
Diffstat (limited to 'compiler/optimizing/ssa_liveness_analysis.cc')
-rw-r--r-- | compiler/optimizing/ssa_liveness_analysis.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/ssa_liveness_analysis.cc b/compiler/optimizing/ssa_liveness_analysis.cc index 7b7495bf3b..185303bc8c 100644 --- a/compiler/optimizing/ssa_liveness_analysis.cc +++ b/compiler/optimizing/ssa_liveness_analysis.cc @@ -197,7 +197,7 @@ void SsaLivenessAnalysis::ComputeLiveRanges() { HInstruction* instruction = environment->GetInstructionAt(i); bool should_be_live = ShouldBeLiveForEnvironment(current, instruction); if (should_be_live) { - DCHECK(instruction->HasSsaIndex()); + CHECK(instruction->HasSsaIndex()) << instruction->DebugName(); live_in->SetBit(instruction->GetSsaIndex()); } if (instruction != nullptr) { |