Undo usage of LLVM macros in debugserver
authorTodd Fiala <todd.fiala@gmail.com>
Wed, 10 Aug 2016 00:53:21 +0000 (00:53 +0000)
committerTodd Fiala <todd.fiala@gmail.com>
Wed, 10 Aug 2016 00:53:21 +0000 (00:53 +0000)
We don't take a dependency on LLVM in debugserver.
This was failing to compile before.

llvm-svn: 278190

lldb/tools/debugserver/source/RNBRemote.cpp

index a3c9db9..30b8043 100644 (file)
@@ -183,14 +183,14 @@ RNBRemote::RNBRemote () :
     m_enable_compression_next_send_packet (false),
     m_compression_mode (compression_types::none)
 {
-    DNBLogThreadedIf (LOG_RNB_REMOTE, "%s", LLVM_PRETTY_FUNCTION);
+    DNBLogThreadedIf (LOG_RNB_REMOTE, "%s", __PRETTY_FUNCTION__);
     CreatePacketTable ();
 }
 
 
 RNBRemote::~RNBRemote()
 {
-    DNBLogThreadedIf (LOG_RNB_REMOTE, "%s", LLVM_PRETTY_FUNCTION);
+    DNBLogThreadedIf (LOG_RNB_REMOTE, "%s", __PRETTY_FUNCTION__);
     StopReadRemoteDataThread();
 }