| Index: runtime/vm/globals.h
|
| diff --git a/runtime/vm/globals.h b/runtime/vm/globals.h
|
| index af78f8d05639e96a94a219f48d276e4c2ab4d7d5..39743c5d15306d81e79da66a9de66f67b609859a 100644
|
| --- a/runtime/vm/globals.h
|
| +++ b/runtime/vm/globals.h
|
| @@ -107,7 +107,9 @@ static const uword kZapUninitializedWord = 0xabababababababab;
|
| ; // NOLINT
|
| // clang-format on
|
| #elif defined(HOST_ARCH_X64)
|
| -#define COPY_FP_REGISTER(fp) UNIMPLEMENTED();
|
| +// We don't have the asm equivalent to get at the frame pointer on
|
| +// windows x64, return the stack pointer instead.
|
| +#define COPY_FP_REGISTER(fp) fp = Thread::GetCurrentStackPointer();
|
| #else
|
| #error Unknown host architecture.
|
| #endif
|
|
|