Skip to content

Commit 476e087

Browse files
committed
[LLDB] Fix building for aarch64 windows after d6d3d21
Differential Revision: https://reviews.llvm.org/D99847
1 parent 201877d commit 476e087

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_arm64.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ static RegisterInfoInterface *
9898
CreateRegisterInfoInterface(const ArchSpec &target_arch) {
9999
assert((HostInfo::GetArchitecture().GetAddressByteSize() == 8) &&
100100
"Register setting path assumes this is a 64-bit host");
101-
return new RegisterInfoPOSIX_arm64(target_arch);
101+
return new RegisterInfoPOSIX_arm64(
102+
target_arch, RegisterInfoPOSIX_arm64::eRegsetMaskDefault);
102103
}
103104

104105
static Status GetThreadContextHelper(lldb::thread_t thread_handle,

0 commit comments

Comments
 (0)