Fixing compile warnings

llvm-svn: 191844
diff --git a/llvm/tools/lli/RemoteTargetExternal.cpp b/llvm/tools/lli/RemoteTargetExternal.cpp
index 59ad2d3..742a948 100644
--- a/llvm/tools/lli/RemoteTargetExternal.cpp
+++ b/llvm/tools/lli/RemoteTargetExternal.cpp
@@ -123,7 +123,7 @@
   uint32_t MsgType;
   rc = ReadBytes(&MsgType, 4);
   assert(rc == 4 && "Error reading message type.");
-  assert(MsgType == ExpectedMsgType && "Error: received unexpected message type.");
+  assert(MsgType == (uint32_t)ExpectedMsgType && "Error: received unexpected message type.");
 
   uint32_t DataSize;
   rc = ReadBytes(&DataSize, 4);
@@ -142,7 +142,7 @@
   uint32_t MsgType;
   rc = ReadBytes(&MsgType, 4);
   assert(rc == 4 && "Error reading message type.");
-  assert(MsgType == ExpectedMsgType && "Error: received unexpected message type.");
+  assert(MsgType == (uint32_t)ExpectedMsgType && "Error: received unexpected message type.");
 
   uint32_t DataSize;
   rc = ReadBytes(&DataSize, 4);