| Index: runtime/vm/stack_frame.h
|
| diff --git a/runtime/vm/stack_frame.h b/runtime/vm/stack_frame.h
|
| index 268ca4a9998819930ed8b30b3cb92ef2bab75a7e..a73c6b0d021847b9da8244c6ea14e2e248c0ac75 100644
|
| --- a/runtime/vm/stack_frame.h
|
| +++ b/runtime/vm/stack_frame.h
|
| @@ -60,6 +60,13 @@ class StackFrame : public ValueObject {
|
| code;
|
| }
|
|
|
| +#if !defined(TARGET_ARCH_IA32) && !defined(TARGET_ARCH_DBC)
|
| + uword* saved_caller_pp_slot() const {
|
| + return reinterpret_cast<uword*>(fp() +
|
| + SavedCallerPpSlotFromFp() * kWordSize);
|
| + }
|
| +#endif
|
| +
|
| // Visit objects in the frame.
|
| virtual void VisitObjectPointers(ObjectPointerVisitor* visitor);
|
|
|
|
|