Chromium Code Reviews| Index: src/deoptimizer.cc |
| =================================================================== |
| --- src/deoptimizer.cc (revision 15216) |
| +++ src/deoptimizer.cc (working copy) |
| @@ -1511,8 +1511,8 @@ |
| } |
| output_frame_offset -= kPointerSize; |
| - value = frame_ptr - (output_frame_size - output_frame_offset) - |
| - StandardFrameConstants::kMarkerOffset + kPointerSize; |
| + value = frame_ptr - (output_frame_size - output_frame_offset) + |
|
Michael Starzinger
2013/06/20 11:39:27
nit: Can we re-order this calculation slightly? Th
haitao.feng
2013/06/20 12:26:19
Done.
|
| + StandardFrameConstants::kCallerSPOffset + kPointerSize; |
| output_frame->SetFrameSlot(output_frame_offset, value); |
| if (trace_) { |
| PrintF(" 0x%08" V8PRIxPTR ": [top + %d] <- 0x%08" |