[Lldb-commits] [lldb] 54a873b - Fix typeo in CPU_TYPE_ARM64_32 for older SDKs.
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 31 14:14:36 PDT 2019
Author: Jason Molenda
Date: 2019-10-31T14:13:57-07:00
New Revision: 54a873b158bd463db48829407f3939ff9a7be65a
URL: https://github.com/llvm/llvm-project/commit/54a873b158bd463db48829407f3939ff9a7be65a
DIFF: https://github.com/llvm/llvm-project/commit/54a873b158bd463db48829407f3939ff9a7be65a.diff
LOG: Fix typeo in CPU_TYPE_ARM64_32 for older SDKs.
Added:
Modified:
lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
Removed:
################################################################################
diff --git a/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm b/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
index ecff11f410c6..e73d2ffe9b9a 100644
--- a/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
+++ b/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
@@ -44,7 +44,7 @@
#ifndef CPU_TYPE_ARM64_32
#define CPU_ARCH_ABI64_32 0x02000000
-#define (CPU_TYPE_ARM | CPU_ARCH_ABI64_32)
+#define CPU_TYPE_ARM64_32 (CPU_TYPE_ARM | CPU_ARCH_ABI64_32)
#endif
#include <TargetConditionals.h> // for TARGET_OS_TV, TARGET_OS_WATCH
More information about the lldb-commits
mailing list