diff options
author | 2016-01-14 18:29:57 +0000 | |
---|---|---|
committer | 2016-01-14 18:29:57 +0000 | |
commit | 15db4dcfcc17dfe6c41d3c7b26355ccfa2504f4e (patch) | |
tree | f3a03a66775378c0ea0e4d0dfeb64dacb42ae899 /compiler/optimizing/code_generator.cc | |
parent | be55805f72329732fefeca72c596452912ab6722 (diff) | |
parent | 780aeced2a8ef918901d8f450864de934f79c555 (diff) |
Merge "Update `ValidateInvokeRuntime()` and HDivZeroCheck."
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index 57c5058cfb..ea0b9eca9a 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -1326,12 +1326,6 @@ void CodeGenerator::ValidateInvokeRuntime(HInstruction* instruction, SlowPathCod << "instruction->DebugName()=" << instruction->DebugName() << " slow_path->GetDescription()=" << slow_path->GetDescription(); DCHECK(instruction->GetSideEffects().Includes(SideEffects::CanTriggerGC()) || - // Control flow would not come back into the code if a fatal slow - // path is taken, so we do not care if it triggers GC. - slow_path->IsFatal() || - // HDeoptimize is a special case: we know we are not coming back from - // it into the code. - instruction->IsDeoptimize() || // When read barriers are enabled, some instructions use a // slow path to emit a read barrier, which does not trigger // GC, is not fatal, nor is emitted by HDeoptimize |