[Lldb-commits] [lldb] r205488 - Add a missing arm64 idef.
Jason Molenda
jmolenda at apple.com
Wed Apr 2 16:52:55 PDT 2014
Author: jmolenda
Date: Wed Apr 2 18:52:55 2014
New Revision: 205488
URL: http://llvm.org/viewvc/llvm-project?rev=205488&view=rev
Log:
Add a missing arm64 idef.
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=205488&r1=205487&r2=205488&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Wed Apr 2 18:52:55 2014
@@ -178,7 +178,7 @@ namespace {
#define HIGH_PORT (49151u)
#endif
-#if defined(__APPLE__) && defined(__arm__)
+#if defined(__APPLE__) && (defined(__arm__) || defined(__arm64__))
static bool rand_initialized = false;
static inline uint16_t
More information about the lldb-commits
mailing list