| Index: runtime/vm/signal_handler.h
|
| diff --git a/runtime/vm/signal_handler.h b/runtime/vm/signal_handler.h
|
| index 0c017414916e42c64ebaf6c7ef9ba83e621bd838..f3116b7aca0724e3aac4bb5ce38916300d456156 100644
|
| --- a/runtime/vm/signal_handler.h
|
| +++ b/runtime/vm/signal_handler.h
|
| @@ -48,6 +48,8 @@ class SignalHandler : public AllStatic {
|
| static uintptr_t GetFramePointer(const mcontext_t& mcontext);
|
| static uintptr_t GetCStackPointer(const mcontext_t& mcontext);
|
| static uintptr_t GetDartStackPointer(const mcontext_t& mcontext);
|
| + // Only valid on architectures that store return address in register.
|
| + static uintptr_t GetReturnAddress(const mcontext_t& mcontext);
|
| private:
|
| };
|
|
|
|
|