This revision was automatically updated to reflect the committed changes. Closed by commit rG476e087939e4: [LLDB] Fix building for aarch64 windows after… (authored by mstorsjo).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D99847/new/ https://reviews.llvm.org/D99847 Files: lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_arm64.cpp Index: lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_arm64.cpp =================================================================== --- lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_arm64.cpp +++ lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_arm64.cpp @@ -98,7 +98,8 @@ CreateRegisterInfoInterface(const ArchSpec &target_arch) { assert((HostInfo::GetArchitecture().GetAddressByteSize() == 8) && "Register setting path assumes this is a 64-bit host"); - return new RegisterInfoPOSIX_arm64(target_arch); + return new RegisterInfoPOSIX_arm64( + target_arch, RegisterInfoPOSIX_arm64::eRegsetMaskDefault); } static Status GetThreadContextHelper(lldb::thread_t thread_handle,
Index: lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_arm64.cpp =================================================================== --- lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_arm64.cpp +++ lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_arm64.cpp @@ -98,7 +98,8 @@ CreateRegisterInfoInterface(const ArchSpec &target_arch) { assert((HostInfo::GetArchitecture().GetAddressByteSize() == 8) && "Register setting path assumes this is a 64-bit host"); - return new RegisterInfoPOSIX_arm64(target_arch); + return new RegisterInfoPOSIX_arm64( + target_arch, RegisterInfoPOSIX_arm64::eRegsetMaskDefault); } static Status GetThreadContextHelper(lldb::thread_t thread_handle,
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits