| Index: src/ia32/deoptimizer-ia32.cc
|
| diff --git a/src/ia32/deoptimizer-ia32.cc b/src/ia32/deoptimizer-ia32.cc
|
| index 16befa910c08941114d237eb2b1af1a29a63ee3e..bfd3042a82a91aa23692226925fd7a035c0b2b4d 100644
|
| --- a/src/ia32/deoptimizer-ia32.cc
|
| +++ b/src/ia32/deoptimizer-ia32.cc
|
| @@ -348,6 +348,8 @@ void Deoptimizer::DoComputeOsrOutputFrame() {
|
| unsigned height = iterator.Next();
|
| unsigned height_in_bytes = height * kPointerSize;
|
| USE(height_in_bytes);
|
| + int handler_count = iterator.Next();
|
| + USE(handler_count);
|
|
|
| unsigned fixed_size = ComputeFixedSize(function_);
|
| unsigned input_frame_size = input_->GetFrameSize();
|
| @@ -477,7 +479,7 @@ void Deoptimizer::DoComputeOsrOutputFrame() {
|
| ok ? "finished" : "aborted",
|
| reinterpret_cast<intptr_t>(function_));
|
| PrintFunctionName();
|
| - PrintF(" => pc=0x%0x]\n", output_[0]->GetPc());
|
| + PrintF(" => pc=0x%08x]\n", output_[0]->GetPc());
|
| }
|
| }
|
|
|
|
|