Index: src/crankshaft/x87/lithium-codegen-x87.cc |
diff --git a/src/crankshaft/x87/lithium-codegen-x87.cc b/src/crankshaft/x87/lithium-codegen-x87.cc |
index 79f8bb5c0058d956b7234ce415a0ad71eb9ac04e..88cfc65ab6a787adf719c4cf8feedafd1fb818e3 100644 |
--- a/src/crankshaft/x87/lithium-codegen-x87.cc |
+++ b/src/crankshaft/x87/lithium-codegen-x87.cc |
@@ -268,8 +268,8 @@ bool LCodeGen::GenerateJumpTable() { |
} else { |
__ call(entry, RelocInfo::RUNTIME_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()) { |
__ bind(&needs_frame); |
@@ -1015,7 +1015,7 @@ void LCodeGen::DeoptimizeIf(Condition cc, LInstruction* instr, |
if (cc == no_condition && frame_is_built_) { |
DeoptComment(deopt_info); |
__ call(entry, RelocInfo::RUNTIME_ENTRY); |
- 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_); |