Undo usage of LLVM macros in debugserver

We don't take a dependency on LLVM in debugserver.
This was failing to compile before.

llvm-svn: 278190
This commit is contained in:
Todd Fiala 2016-08-10 00:53:21 +00:00
parent 1c57cc2b68
commit abd6186216
1 changed files with 2 additions and 2 deletions

View File

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