[llvm-branch-commits] [lldb] [lldb] Refactor RegisterTypeBuilder (PR #213897)

Greg Clayton via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Aug 5 12:46:21 PDT 2026


================
@@ -1564,9 +1564,8 @@ class Target : public std::enable_shared_from_this<Target>,
   ///     if none can be found.
   llvm::Expected<lldb_private::Address> GetEntryPointAddress();
 
-  CompilerType GetRegisterType(const std::string &name,
-                               const lldb_private::RegisterType &type_info,
-                               uint32_t byte_size);
+  CompilerType GetRegisterType(const lldb_private::RegisterType &type_info,
+                               uint32_t register_byte_size);
----------------
clayborg wrote:

We do want to pass in the `RegisterInfo &info` here in case this function wants to grab any other info from the register info?

https://github.com/llvm/llvm-project/pull/213897


More information about the llvm-branch-commits mailing list