[Lldb-commits] [PATCH] D136674: [LLDB] Fix RISCV build
Emmmer S via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 25 08:03:31 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc094b1eef08c: [LLDB] Fix RISCV build (authored by Emmmer).
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D136674/new/
https://reviews.llvm.org/D136674
Files:
lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_riscv64.cpp
Index: lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_riscv64.cpp
===================================================================
--- lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_riscv64.cpp
+++ lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_riscv64.cpp
@@ -135,7 +135,7 @@
return Status("failed - register wasn't recognized to be a GPR or an FPR, "
"write strategy unknown");
- reg_value.SetFromMemoryData(reg_info, src, reg_info->byte_size,
+ reg_value.SetFromMemoryData(*reg_info, src, reg_info->byte_size,
eByteOrderLittle, error);
return error;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D136674.470502.patch
Type: text/x-patch
Size: 662 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20221025/21f784ac/attachment-0001.bin>
More information about the lldb-commits
mailing list