https://github.com/kiyolee created 
https://github.com/llvm/llvm-project/pull/183980

Fix #180624.
Apparently a slight oversight.

>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] [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;

_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to