| Index: src/mips/frames-mips.cc
|
| diff --git a/src/mips/frames-mips.cc b/src/mips/frames-mips.cc
|
| index f54202da0f6840de04d44fdbae6de853c891b235..faaa0e0f48ebec3d4b76482c8542ce88ede11c4b 100644
|
| --- a/src/mips/frames-mips.cc
|
| +++ b/src/mips/frames-mips.cc
|
| @@ -38,12 +38,7 @@ namespace internal {
|
|
|
|
|
| Address ExitFrame::ComputeStackPointer(Address fp) {
|
| - Address marker = Memory::Address_at(fp + ExitFrameConstants::kMarkerOffset);
|
| - Address sp = fp + ExitFrameConstants::kSPOffset;
|
| - if (marker == NULL) {
|
| - sp -= FPURegister::kNumRegisters * kDoubleSize + 2 * kPointerSize;
|
| - }
|
| - return sp;
|
| + return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
|
| }
|
|
|
|
|
|
|