diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2016-08-04 22:05:54 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-08-04 22:05:54 +0000 |
commit | ac152079c6ec514a4c0c03d2d0246fd4dec82d11 (patch) | |
tree | bda2a4f773b0c96f11eff9e97d74865bb33522eb /compiler/optimizing/code_generator.cc | |
parent | 20b975cc5c5a1f4e6f0a8e525b5d2e63abc413df (diff) | |
parent | 806f0122e923581f559043e82cf958bab5defc87 (diff) |
Merge "Add support for CallKind::kCallOnMainAndSlowPath"
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index a5493ab9f8..5152075499 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -1182,7 +1182,7 @@ void CodeGenerator::ValidateInvokeRuntime(HInstruction* instruction, SlowPathCod << "instruction->DebugName()=" << instruction->DebugName() << " instruction->GetSideEffects().ToString()=" << instruction->GetSideEffects().ToString(); } else { - DCHECK(instruction->GetLocations()->OnlyCallsOnSlowPath() || slow_path->IsFatal()) + DCHECK(instruction->GetLocations()->CallsOnSlowPath() || slow_path->IsFatal()) << "instruction->DebugName()=" << instruction->DebugName() << " slow_path->GetDescription()=" << slow_path->GetDescription(); DCHECK(instruction->GetSideEffects().Includes(SideEffects::CanTriggerGC()) || |