[Lldb-commits] [lldb] ee9a646 - [lldb][RISCV] Add missing flags pointer to register infos
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 19 04:44:34 PDT 2023
Author: David Spickett
Date: 2023-04-19T11:42:14Z
New Revision: ee9a646192db1cc5d1df57d69232fdd2a5c89fc5
URL: https://github.com/llvm/llvm-project/commit/ee9a646192db1cc5d1df57d69232fdd2a5c89fc5
DIFF: https://github.com/llvm/llvm-project/commit/ee9a646192db1cc5d1df57d69232fdd2a5c89fc5.diff
LOG: [lldb][RISCV] Add missing flags pointer to register infos
efd64c2f2506df3e2ed6d9da68e49f03fc31763c added these.
Added:
Modified:
lldb/source/Plugins/Process/Utility/RegisterInfos_riscv64.h
Removed:
################################################################################
diff --git a/lldb/source/Plugins/Process/Utility/RegisterInfos_riscv64.h b/lldb/source/Plugins/Process/Utility/RegisterInfos_riscv64.h
index 8ea2046279256..720d900c7b97e 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterInfos_riscv64.h
+++ b/lldb/source/Plugins/Process/Utility/RegisterInfos_riscv64.h
@@ -74,7 +74,7 @@ using namespace riscv_dwarf;
#define DEFINE_VPR_ALT(reg, alt, generic_kind) \
{ \
#reg, #alt, 16, 0, lldb::eEncodingVector, lldb::eFormatVectorOfUInt8, \
- VPR_KIND(vpr_##reg, generic_kind), nullptr, nullptr \
+ VPR_KIND(vpr_##reg, generic_kind), nullptr, nullptr, nullptr \
}
// clang-format on
More information about the lldb-commits
mailing list