| Index: src/mips64/deoptimizer-mips64.cc
|
| diff --git a/src/mips64/deoptimizer-mips64.cc b/src/mips64/deoptimizer-mips64.cc
|
| index f903f465655ae943fcbcd09629e9591433699b6b..d7a7f05fce333b0277ddc08f3a206d0ec5fa4e42 100644
|
| --- a/src/mips64/deoptimizer-mips64.cc
|
| +++ b/src/mips64/deoptimizer-mips64.cc
|
| @@ -19,6 +19,12 @@ int Deoptimizer::patch_size() {
|
| }
|
|
|
|
|
| +void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
|
| + // Empty because there is no need for relocation information for the code
|
| + // patching in Deoptimizer::PatchCodeForDeoptimization below.
|
| +}
|
| +
|
| +
|
| void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
|
| Address code_start_address = code->instruction_start();
|
| // Invalidate the relocation information, as it will become invalid by the
|
|
|