Chromium Code Reviews| Index: runtime/vm/code_patcher_dbc.cc |
| diff --git a/runtime/vm/code_patcher_dbc.cc b/runtime/vm/code_patcher_dbc.cc |
| index e0010abf373529a37a5af0519e05cd9c965fcaaa..29c8bf20aca5c822914949ff90444e1e3d783027 100644 |
| --- a/runtime/vm/code_patcher_dbc.cc |
| +++ b/runtime/vm/code_patcher_dbc.cc |
| @@ -31,8 +31,6 @@ void CodePatcher::PatchStaticCallAt(uword return_address, |
| void CodePatcher::InsertDeoptimizationCallAt(uword start, uword target) { |
| - // The inserted call should not overlap the lazy deopt jump code. |
| - ASSERT(start + CallPattern::DeoptCallPatternLengthInBytes() <= target); |
|
zra
2016/05/19 16:24:27
Is this removed because 'target' can be 0? Maybe a
Vyacheslav Egorov (Google)
2016/05/20 12:11:46
Done.
|
| CallPattern::InsertDeoptCallAt(start, target); |
| } |