================
@@ -1226,7 +1226,7 @@ bool lldb_private::formatters::ObjCSELSummaryProvider(
 time_t lldb_private::formatters::GetOSXEpoch() {
   static time_t epoch = 0;
   if (!epoch) {
-#ifndef _WIN32
+#if !defined(_WIN32) && !defined(_AIX)
----------------
DavidSpickett wrote:

This would just return 0 on Windows or AIX, but your change isn't making that 
any worse so it's fine. I think the side effect is printing an `NSDate` while 
debugging Mac OS from either would give the wrong result.

Something that is clearly done rarely, probably never.

https://github.com/llvm/llvm-project/pull/120979
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to