From 67d8271b183f9a3051e4346eab2b843574f0ab2e Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Fri, 22 Nov 2024 19:44:22 +0100 Subject: [PATCH] Fix osx-x64 build --- src/coreclr/pal/src/exception/remote-unwind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/pal/src/exception/remote-unwind.cpp b/src/coreclr/pal/src/exception/remote-unwind.cpp index 6e2097a627c5d0..af9a252a8d9fdd 100644 --- a/src/coreclr/pal/src/exception/remote-unwind.cpp +++ b/src/coreclr/pal/src/exception/remote-unwind.cpp @@ -1464,7 +1464,7 @@ StepWithCompactEncodingFrameless(const libunwindInfo* info, compact_unwind_encod } } - uint64_t savedRegisters = context->Rsp + stack_size - 8 - (8 * register_count); + unw_word_t savedRegisters = context->Rsp + stack_size - 8 - (8 * register_count); for (int i = 0; i < register_count; i++) { uint64_t reg;