Index: src/x87/lithium-codegen-x87.cc |
diff --git a/src/x87/lithium-codegen-x87.cc b/src/x87/lithium-codegen-x87.cc |
index 76edbb095e1c906c71c201548e475544655f799d..13614b0231a1a7da26f3c7208dab0357cc847e32 100644 |
--- a/src/x87/lithium-codegen-x87.cc |
+++ b/src/x87/lithium-codegen-x87.cc |
@@ -381,7 +381,7 @@ bool LCodeGen::GenerateJumpTable() { |
Deoptimizer::JumpTableEntry* table_entry = &jump_table_[i]; |
__ bind(&table_entry->label); |
Address entry = table_entry->address; |
- DeoptComment(table_entry->reason); |
+ DeoptComment(table_entry->deopt_info); |
if (table_entry->needs_frame) { |
DCHECK(!info()->saves_caller_doubles()); |
__ push(Immediate(ExternalReference::ForDeoptEntry(entry))); |
@@ -1143,14 +1143,14 @@ void LCodeGen::DeoptimizeIf(Condition cc, LInstruction* instr, |
__ bind(&done); |
} |
- Deoptimizer::Reason reason(instr->hydrogen_value()->position().raw(), |
- instr->Mnemonic(), deopt_reason); |
+ Deoptimizer::DeoptInfo deopt_info(instr->hydrogen_value()->position().raw(), |
+ instr->Mnemonic(), deopt_reason); |
DCHECK(info()->IsStub() || frame_is_built_); |
if (cc == no_condition && frame_is_built_) { |
- DeoptComment(reason); |
+ DeoptComment(deopt_info); |
__ call(entry, RelocInfo::RUNTIME_ENTRY); |
} else { |
- Deoptimizer::JumpTableEntry table_entry(entry, reason, bailout_type, |
+ Deoptimizer::JumpTableEntry table_entry(entry, deopt_info, bailout_type, |
!frame_is_built_); |
// We often have several deopts to the same entry, reuse the last |
// jump entry if this is the case. |