| Index: runtime/vm/simulator_dbc.h
|
| diff --git a/runtime/vm/simulator_dbc.h b/runtime/vm/simulator_dbc.h
|
| index f9e6020d114e34e51e8559e91a7bb85ca2bd00f7..076dedcfd378c984c3f7dc3f5c901a887af7b6b9 100644
|
| --- a/runtime/vm/simulator_dbc.h
|
| +++ b/runtime/vm/simulator_dbc.h
|
| @@ -66,7 +66,7 @@ class Simulator {
|
|
|
| void JumpToFrame(uword pc, uword sp, uword fp, Thread* thread);
|
|
|
| - uword get_sp() const { return reinterpret_cast<uword>(sp_); }
|
| + uword get_sp() const { return reinterpret_cast<uword>(fp_); }
|
| uword get_fp() const { return reinterpret_cast<uword>(fp_); }
|
| uword get_pc() const { return reinterpret_cast<uword>(pc_); }
|
|
|
| @@ -92,7 +92,6 @@ class Simulator {
|
| uintptr_t* stack_;
|
|
|
| RawObject** fp_;
|
| - RawObject** sp_;
|
| uword pc_;
|
|
|
| SimulatorSetjmpBuffer* last_setjmp_buffer_;
|
|
|