Index: runtime/vm/thread_interrupter_win.cc |
diff --git a/runtime/vm/thread_interrupter_win.cc b/runtime/vm/thread_interrupter_win.cc |
index b39c1882972e1e36824bd85c16229671462d2201..ef9223fcf351d65f117ba7f45157fcc1db3941d8 100644 |
--- a/runtime/vm/thread_interrupter_win.cc |
+++ b/runtime/vm/thread_interrupter_win.cc |
@@ -26,9 +26,9 @@ class ThreadInterrupterWin : public AllStatic { |
state->fp = static_cast<uintptr_t>(context.Ebp); |
state->sp = static_cast<uintptr_t>(context.Esp); |
#elif defined(TARGET_ARCH_X64) |
- state->pc = reinterpret_cast<uintptr_t>(context.Rip); |
- state->fp = reinterpret_cast<uintptr_t>(context.Rbp); |
- state->sp = reinterpret_cast<uintptr_t>(context.Rsp); |
+ state->pc = static_cast<uintptr_t>(context.Rip); |
+ state->fp = static_cast<uintptr_t>(context.Rbp); |
+ state->sp = static_cast<uintptr_t>(context.Rsp); |
#else |
UNIMPLEMENTED(); |
#endif |