| Index: src/ia32/deoptimizer-ia32.cc
|
| ===================================================================
|
| --- src/ia32/deoptimizer-ia32.cc (revision 6894)
|
| +++ src/ia32/deoptimizer-ia32.cc (working copy)
|
| @@ -354,7 +354,7 @@
|
| // function code and AST id of the bailout.
|
| output_offset -= kPointerSize;
|
| input_offset -= kPointerSize;
|
| - uint32_t value;
|
| + intptr_t value;
|
| if (is_bottommost) {
|
| value = input_->GetFrameSlot(input_offset);
|
| } else {
|
| @@ -378,7 +378,7 @@
|
| value = output_[frame_index - 1]->GetFp();
|
| }
|
| output_frame->SetFrameSlot(output_offset, value);
|
| - unsigned fp_value = top_address + output_offset;
|
| + intptr_t fp_value = top_address + output_offset;
|
| ASSERT(!is_bottommost || input_->GetRegister(ebp.code()) == fp_value);
|
| output_frame->SetFp(fp_value);
|
| if (is_topmost) output_frame->SetRegister(ebp.code(), fp_value);
|
|
|