| Index: src/crankshaft/mips/lithium-codegen-mips.cc
|
| diff --git a/src/crankshaft/mips/lithium-codegen-mips.cc b/src/crankshaft/mips/lithium-codegen-mips.cc
|
| index 667fcbe92c3dcb5a9dd5557f26f90f98bef647be..57d9de89ab096373f8372132a20873fc899eea76 100644
|
| --- a/src/crankshaft/mips/lithium-codegen-mips.cc
|
| +++ b/src/crankshaft/mips/lithium-codegen-mips.cc
|
| @@ -330,8 +330,8 @@ bool LCodeGen::GenerateJumpTable() {
|
| } else {
|
| __ Call(&call_deopt_entry);
|
| }
|
| - info()->LogDeoptCallPosition(masm()->pc_offset(),
|
| - table_entry->deopt_info.inlining_id);
|
| + LogDeoptCallPosition(masm()->pc_offset(),
|
| + table_entry->deopt_info.inlining_id);
|
| }
|
|
|
| if (needs_frame.is_linked()) {
|
| @@ -798,7 +798,7 @@ void LCodeGen::DeoptimizeIf(Condition condition, LInstruction* instr,
|
| !info()->saves_caller_doubles()) {
|
| DeoptComment(deopt_info);
|
| __ Call(entry, RelocInfo::RUNTIME_ENTRY, condition, src1, src2);
|
| - info()->LogDeoptCallPosition(masm()->pc_offset(), deopt_info.inlining_id);
|
| + LogDeoptCallPosition(masm()->pc_offset(), deopt_info.inlining_id);
|
| } else {
|
| Deoptimizer::JumpTableEntry table_entry(entry, deopt_info, bailout_type,
|
| !frame_is_built_);
|
|
|