https://github.com/kiyolee updated https://github.com/llvm/llvm-project/pull/183980
>From bf9c7f9172475cb1505d76a1df6191e362345345 Mon Sep 17 00:00:00 2001 From: Kelvin Lee <[email protected]> Date: Sun, 1 Mar 2026 16:55:14 +1100 Subject: [PATCH 1/2] [lldb][FreeBSD] Fix some missed renaming to x86 for shared files Fix #180624 --- .../Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h b/lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h index 51a53c749dfe4..9cb22379b0a91 100644 --- a/lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h +++ b/lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h @@ -33,12 +33,12 @@ namespace process_freebsd { class NativeProcessFreeBSD; -class NativeRegisterContextFreeBSD_x86_64 +class NativeRegisterContextFreeBSD_x86 : public NativeRegisterContextFreeBSD, public NativeRegisterContextDBReg_x86 { public: - NativeRegisterContextFreeBSD_x86_64(const ArchSpec &target_arch, - NativeThreadFreeBSD &native_thread); + NativeRegisterContextFreeBSD_x86(const ArchSpec &target_arch, + NativeThreadFreeBSD &native_thread); uint32_t GetRegisterSetCount() const override; const RegisterSet *GetRegisterSet(uint32_t set_index) const override; >From 255d97526812047804bd1895ab0211522c43fca5 Mon Sep 17 00:00:00 2001 From: Kelvin Lee <[email protected]> Date: Sun, 1 Mar 2026 17:09:10 +1100 Subject: [PATCH 2/2] Fix format --- .../Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h b/lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h index 9cb22379b0a91..cd519691eb5ad 100644 --- a/lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h +++ b/lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86.h @@ -33,9 +33,8 @@ namespace process_freebsd { class NativeProcessFreeBSD; -class NativeRegisterContextFreeBSD_x86 - : public NativeRegisterContextFreeBSD, - public NativeRegisterContextDBReg_x86 { +class NativeRegisterContextFreeBSD_x86 : public NativeRegisterContextFreeBSD, + public NativeRegisterContextDBReg_x86 { public: NativeRegisterContextFreeBSD_x86(const ArchSpec &target_arch, NativeThreadFreeBSD &native_thread); _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
