diff options
| author | Jason Molenda <jmolenda@apple.com> | 2017-04-21 20:19:28 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2017-04-21 20:19:28 +0000 |
| commit | 11506a9d1cbb1c605abe2a01f041f02112c00fa1 (patch) | |
| tree | 48824b427e34c7ae17119815a295f9e496f46514 | |
| parent | f9161bd1d558a8a32ad494b611a9d99ee6aba5c5 (diff) | |
| download | bcm5719-llvm-11506a9d1cbb1c605abe2a01f041f02112c00fa1.tar.gz bcm5719-llvm-11506a9d1cbb1c605abe2a01f041f02112c00fa1.zip | |
Correct the names of some target conditional defines in debugserver.
llvm-svn: 301034
| -rw-r--r-- | lldb/tools/debugserver/source/RNBRemote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/debugserver/source/RNBRemote.cpp b/lldb/tools/debugserver/source/RNBRemote.cpp index 4c1f27eb1cb..94260c61929 100644 --- a/lldb/tools/debugserver/source/RNBRemote.cpp +++ b/lldb/tools/debugserver/source/RNBRemote.cpp @@ -3614,7 +3614,7 @@ rnb_err_t RNBRemote::HandlePacket_qSupported(const char *p) { 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 |

