| Index: runtime/vm/code_patcher_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/code_patcher_ia32.cc (revision 31811)
|
| +++ runtime/vm/code_patcher_ia32.cc (working copy)
|
| @@ -220,7 +220,17 @@
|
| }
|
|
|
|
|
| +int32_t CodePatcher::GetPoolOffsetAt(uword return_address) {
|
| + UNREACHABLE();
|
| + return 0;
|
| +}
|
|
|
| +
|
| +void CodePatcher::SetPoolOffsetAt(uword return_address, int32_t offset) {
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| void CodePatcher::InsertCallAt(uword start, uword target) {
|
| // The inserted call should not overlap the lazy deopt jump code.
|
| ASSERT(start + CallPattern::InstructionLength() <= target);
|
|
|