| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index ad401300401132a03a7bfb69f4fa331fe34f4fd1..8678b1823d0dac79d482f5adc7961873ec19924c 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -11269,8 +11269,8 @@ Code* Code::GetCodeAgeStub(Isolate* isolate, Age age, MarkingParity parity) {
|
| }
|
|
|
|
|
| -void Code::PrintDeoptLocation(FILE* out, int bailout_id) {
|
| - Deoptimizer::DeoptInfo info = Deoptimizer::GetDeoptInfo(this, bailout_id);
|
| +void Code::PrintDeoptLocation(FILE* out, Address pc) {
|
| + Deoptimizer::DeoptInfo info = Deoptimizer::GetDeoptInfo(this, pc);
|
| class SourcePosition pos = info.position;
|
| if (info.deopt_reason != Deoptimizer::kNoReason || !pos.IsUnknown()) {
|
| if (FLAG_hydrogen_track_positions) {
|
|
|