[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


================
@@ -129,8 +129,8 @@ void lldb_private::DumpRegisterValue(const RegisterValue &reg_val, Stream &s,
       (reg_info.byte_size != 4 && reg_info.byte_size != 8))
     return;
 
-  CompilerType register_compiler_type = target_sp->GetRegisterType(
-      reg_info.name, *reg_info.register_type, reg_info.byte_size);
+  CompilerType register_compiler_type =
+      target_sp->GetRegisterType(*reg_info.register_type, reg_info.byte_size);
----------------
clayborg wrote:

just pass `reg_info` here if you agree with above comment?

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


More information about the llvm-branch-commits mailing list