[Lldb-commits] [PATCH] D99847: [LLDB] Fix building for aarch64 windows after d6d3d21cd1cb1567eaf7ff8c0867b07227a19d99

Martin Storsjö via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 6 04:04:04 PDT 2021


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,


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D99847.335467.patch
Type: text/x-patch
Size: 772 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210406/6eff83bc/attachment.bin>


More information about the lldb-commits mailing list