aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
diff options
context:
space:
mode:
authorHafiz Abid Qadeer <hafiz_abid@mentor.com>2014-03-12 10:45:23 +0000
committerHafiz Abid Qadeer <hafiz_abid@mentor.com>2014-03-12 10:45:23 +0000
commit6eff101926830481b638e451c58e82275509d224 (patch)
tree94c25c23b1352ecb3a4dcd7d4836c4df7cbabba8 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
parentbdb515916c1f9787b7e9d8a56468bfe08b975098 (diff)
downloadllvm-6eff101926830481b638e451c58e82275509d224.zip
llvm-6eff101926830481b638e451c58e82275509d224.tar.gz
llvm-6eff101926830481b638e451c58e82275509d224.tar.bz2
Replace some _MSC_VER with _WIN32.
This allows to use some code for mingw which was previously only used for MSVC. llvm-svn: 203651
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
index a33f27e..ffc948d 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
@@ -702,7 +702,7 @@ GDBRemoteCommunication::StartDebugserverProcess (const char *hostname,
if (::mktemp (named_pipe_path))
{
-#if defined(_MSC_VER)
+#if defined(_WIN32)
if ( false )
#else
if (::mkfifo(named_pipe_path, 0600) == 0)