[Lldb-commits] [lldb] [lldb] Additional pieces towards OpenBSD support (PR #74198)

Brad Smith via lldb-commits lldb-commits at lists.llvm.org
Sat Dec 2 08:51:53 PST 2023


================
@@ -1245,9 +1245,10 @@ bool FormatEntity::Format(const Entry &entry, Stream &s,
             llvm::Triple::OSType ostype = arch.IsValid()
                                               ? arch.GetTriple().getOS()
                                               : llvm::Triple::UnknownOS;
-            if ((ostype == llvm::Triple::FreeBSD) ||
-                (ostype == llvm::Triple::Linux) ||
-                (ostype == llvm::Triple::NetBSD)) {
+            if (ostype == llvm::Triple::Linux ||
----------------
brad0 wrote:

There are some cases like that in some areas. I try to keep the BSD's grouped together and in order of DragonFly, FreeBSD, NetBSD, OpenBSD where relevant. I took out that part.

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


More information about the lldb-commits mailing list