Index: src/arm/frames-arm.cc |
=================================================================== |
--- src/arm/frames-arm.cc (revision 6213) |
+++ src/arm/frames-arm.cc (working copy) |
@@ -43,6 +43,9 @@ |
if (marker == NULL) { |
sp -= DwVfpRegister::kNumRegisters * kDoubleSize + 2 * kPointerSize; |
} |
+ if (marker == reinterpret_cast<void*>(ExitApiFrameConstants::kMarker)) { |
antonm
2011/01/21 17:56:35
nits:
a) unnecessary space after ==
b) reinterpret
|
+ sp = Memory::Address_at(fp + ExitApiFrameConstants::kSPOffset); |
+ } |
return sp; |
} |