| Index: runtime/vm/longjump.cc
|
| diff --git a/runtime/vm/longjump.cc b/runtime/vm/longjump.cc
|
| index 2bc7e318725b0960eef8de2295204655f47ab22f..d79ee760deaa87288fba9767d04844e09682e79e 100644
|
| --- a/runtime/vm/longjump.cc
|
| +++ b/runtime/vm/longjump.cc
|
| @@ -31,8 +31,8 @@ bool LongJumpScope::IsSafeToJump() {
|
| Simulator* sim = Simulator::Current();
|
| // When using simulator, only mutator thread should refer to Simulator
|
| // since there can be only one per isolate.
|
| - uword top_exit_frame_info = thread->IsMutatorThread() ?
|
| - sim->top_exit_frame_info() : 0;
|
| + uword top_exit_frame_info =
|
| + thread->IsMutatorThread() ? sim->top_exit_frame_info() : 0;
|
| #else
|
| uword top_exit_frame_info = thread->top_exit_frame_info();
|
| #endif
|
| @@ -56,7 +56,7 @@ void LongJumpScope::Jump(int value, const Error& error) {
|
| #if defined(DEBUG)
|
| #define CHECK_REUSABLE_HANDLE(name) \
|
| ASSERT(!thread->reusable_##name##_handle_scope_active());
|
| -REUSABLE_HANDLE_LIST(CHECK_REUSABLE_HANDLE)
|
| + REUSABLE_HANDLE_LIST(CHECK_REUSABLE_HANDLE)
|
| #undef CHECK_REUSABLE_HANDLE
|
| #endif // defined(DEBUG)
|
|
|
|
|