[Lldb-commits] [lldb] r301034 - Correct the names of some target conditional defines in debugserver.

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 21 13:19:28 PDT 2017


Author: jmolenda
Date: Fri Apr 21 15:19:28 2017
New Revision: 301034

URL: http://llvm.org/viewvc/llvm-project?rev=301034&view=rev
Log:
Correct the names of some target conditional defines in debugserver.

Modified:
    lldb/trunk/tools/debugserver/source/RNBRemote.cpp

Modified: lldb/trunk/tools/debugserver/source/RNBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/RNBRemote.cpp?rev=301034&r1=301033&r2=301034&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/RNBRemote.cpp (original)
+++ lldb/trunk/tools/debugserver/source/RNBRemote.cpp Fri Apr 21 15:19:28 2017
@@ -3614,7 +3614,7 @@ rnb_err_t RNBRemote::HandlePacket_qSuppo
   bool enable_compression = false;
   (void)enable_compression;
 
-#if (defined (TARGET_OS_WATCH) && TARGET_OS_WATCHOS == 1) || (defined (TARGET_OS_IOS) && TARGET_OS_IOS == 1) || (defined (TARGET_OS_TVOS) && TARGET_OS_TVOS == 1)
+#if (defined (TARGET_OS_WATCH) && TARGET_OS_WATCH == 1) || (defined (TARGET_OS_IOS) && TARGET_OS_IOS == 1) || (defined (TARGET_OS_TV) && TARGET_OS_TV == 1)
   enable_compression = true;
 #endif
 




More information about the lldb-commits mailing list