| Index: runtime/vm/code_patcher_arm.cc
|
| ===================================================================
|
| --- runtime/vm/code_patcher_arm.cc (revision 33437)
|
| +++ runtime/vm/code_patcher_arm.cc (working copy)
|
| @@ -59,7 +59,7 @@
|
|
|
| void CodePatcher::InsertCallAt(uword start, uword target) {
|
| // The inserted call should not overlap the lazy deopt jump code.
|
| - ASSERT(start + CallPattern::kFixedLengthInBytes <= target);
|
| + ASSERT(start + CallPattern::LengthInBytes() <= target);
|
| CallPattern::InsertAt(start, target);
|
| }
|
|
|
|
|