https://github.com/mchoo7 updated 
https://github.com/llvm/llvm-project/pull/178556

>From 6439bb25fc283defd7389af87243e8b9140f3dce Mon Sep 17 00:00:00 2001
From: Minsoo Choo <[email protected]>
Date: Wed, 28 Jan 2026 20:19:00 -0500
Subject: [PATCH 1/2] [lldb] [Process/Utility] Update code url for FreeBSD in
 comments

FreeBSD has moved from svn to git. Although https://cgit.freebsd.org/src
is source of truth, GitHub is more accessible for most people.

Signed-off-by: Minsoo Choo <[email protected]>
---
 .../Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp     | 2 +-
 .../Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp   | 2 +-
 .../Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp  | 2 +-
 .../Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp 
b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
index df6a82c11255e..cfb598a27e84f 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
@@ -12,7 +12,7 @@
 using namespace lldb_private;
 using namespace lldb;
 
-// http://svnweb.freebsd.org/base/head/sys/x86/include/reg.h
+// https://github.com/freebsd/freebsd-src/blob/main/sys/x86/include/reg.h
 struct GPR {
   uint32_t fs;
   uint32_t es;
diff --git 
a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp 
b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
index 1f52c09df12e7..7747bcc69ca3b 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
@@ -61,7 +61,7 @@ static const RegisterSet 
g_reg_sets_mips64[k_num_register_sets] = {
      g_fp_regnums_mips64},
 };
 
-// http://svnweb.freebsd.org/base/head/sys/mips/include/regnum.h
+// 
https://github.com/freebsd/freebsd-src/blob/stable/13/sys/mips/include/regnum.h
 typedef struct _GPR {
   uint64_t zero;
   uint64_t r1;
diff --git 
a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp 
b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
index d8dfa434335be..f9f5768edc8db 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
@@ -13,7 +13,7 @@
 using namespace lldb_private;
 using namespace lldb;
 
-// http://svnweb.freebsd.org/base/head/sys/powerpc/include/reg.h
+// https://github.com/freebsd/freebsd-src/blob/main/sys/powerpc/include/reg.h
 typedef struct _GPR64 {
   uint64_t r0;
   uint64_t r1;
diff --git 
a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp 
b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
index c361b2abb726b..2190530c1a8f9 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
@@ -15,7 +15,7 @@
 using namespace lldb_private;
 using namespace lldb;
 
-// http://svnweb.freebsd.org/base/head/sys/x86/include/reg.h
+// https://github.com/freebsd/freebsd-src/blob/main/sys/x86/include/reg.h
 typedef struct _GPR {
   uint64_t r15;
   uint64_t r14;

>From 84893c77409ad0d8b0a51a9b9952aa4e97bf7852 Mon Sep 17 00:00:00 2001
From: Minsoo Choo <[email protected]>
Date: Sat, 31 Jan 2026 10:16:39 -0500
Subject: [PATCH 2/2] fixup! [lldb] [Process/Utility] Update code url for
 FreeBSD in comments

Change link to cgit
---
 .../Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp     | 2 +-
 .../Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp   | 2 +-
 .../Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp  | 2 +-
 .../Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp 
b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
index cfb598a27e84f..841ae170466b5 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
@@ -12,7 +12,7 @@
 using namespace lldb_private;
 using namespace lldb;
 
-// https://github.com/freebsd/freebsd-src/blob/main/sys/x86/include/reg.h
+// https://cgit.freebsd.org/src/tree/sys/x86/include/reg.h?h=stable/14
 struct GPR {
   uint32_t fs;
   uint32_t es;
diff --git 
a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp 
b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
index 7747bcc69ca3b..8bc4e09870fce 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
@@ -61,7 +61,7 @@ static const RegisterSet 
g_reg_sets_mips64[k_num_register_sets] = {
      g_fp_regnums_mips64},
 };
 
-// 
https://github.com/freebsd/freebsd-src/blob/stable/13/sys/mips/include/regnum.h
+// https://cgit.freebsd.org/src/tree/sys/mips/include/regnum.h?h=stable/13
 typedef struct _GPR {
   uint64_t zero;
   uint64_t r1;
diff --git 
a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp 
b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
index f9f5768edc8db..cd422556752fc 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
@@ -13,7 +13,7 @@
 using namespace lldb_private;
 using namespace lldb;
 
-// https://github.com/freebsd/freebsd-src/blob/main/sys/powerpc/include/reg.h
+// https://cgit.freebsd.org/src/tree/sys/powerpc/include/reg.h
 typedef struct _GPR64 {
   uint64_t r0;
   uint64_t r1;
diff --git 
a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp 
b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
index 2190530c1a8f9..2a382175acfb3 100644
--- a/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
+++ b/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
@@ -15,7 +15,7 @@
 using namespace lldb_private;
 using namespace lldb;
 
-// https://github.com/freebsd/freebsd-src/blob/main/sys/x86/include/reg.h
+// https://cgit.freebsd.org/src/tree/sys/x86/include/reg.h
 typedef struct _GPR {
   uint64_t r15;
   uint64_t r14;

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

Reply via email to