| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index dab7aa194b01a850fe9d3b2d9ed3873aceaea7c2..e8547d65c4e356b989e90224f9672b9c299cfa3e 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -13650,8 +13650,9 @@ void DeoptimizationOutputData::DeoptimizationOutputDataPrint(
|
| int pc_and_state = this->PcAndState(i)->value();
|
| os << std::setw(6) << this->AstId(i).ToInt() << " " << std::setw(8)
|
| << FullCodeGenerator::PcField::decode(pc_and_state) << " "
|
| - << FullCodeGenerator::State2String(
|
| - FullCodeGenerator::StateField::decode(pc_and_state)) << "\n";
|
| + << Deoptimizer::BailoutStateToString(
|
| + FullCodeGenerator::BailoutStateField::decode(pc_and_state))
|
| + << "\n";
|
| }
|
| }
|
|
|
|
|