| Index: src/deoptimizer.cc
|
| diff --git a/src/deoptimizer.cc b/src/deoptimizer.cc
|
| index 6fe51bb3aff48ead9cde4b6b4139bf093a5c468c..aca106cc5fc22468a26ea1f0e98943c86abadbc1 100644
|
| --- a/src/deoptimizer.cc
|
| +++ b/src/deoptimizer.cc
|
| @@ -2730,8 +2730,7 @@ Deoptimizer::DeoptInfo Deoptimizer::GetDeoptInfo(Code* code, Address pc) {
|
| }
|
| if (info->rmode() == RelocInfo::DEOPT_POSITION) {
|
| int raw_position = static_cast<int>(info->data());
|
| - last_position = raw_position ? SourcePosition::FromRaw(raw_position)
|
| - : SourcePosition::Unknown();
|
| + last_position.Decode(raw_position);
|
| } else if (info->rmode() == RelocInfo::DEOPT_ID) {
|
| last_deopt_id = static_cast<int>(info->data());
|
| } else if (info->rmode() == RelocInfo::DEOPT_REASON) {
|
|
|