X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=tools%2Flli%2FWindows%2FRPCChannel.inc;fp=tools%2Flli%2FWindows%2FRPCChannel.inc;h=0000000000000000000000000000000000000000;hp=82f2acbf14afb44dd1c8283bd3bb261be21f9325;hb=b20e09ca99580deb207856d00877c115719b2464;hpb=5f064bbdab4e0d04cdcbf2a86dd3c6b66fdaf0fa diff --git a/tools/lli/Windows/RPCChannel.inc b/tools/lli/Windows/RPCChannel.inc deleted file mode 100644 index 82f2acbf14a..00000000000 --- a/tools/lli/Windows/RPCChannel.inc +++ /dev/null @@ -1,29 +0,0 @@ -//=- RPCChannel.inc - LLVM out-of-process JIT execution for Windows --=// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// Implementation of the Windows-specific parts of the RPCChannel class -// which executes JITed code in a separate process from where it was built. -// -//===----------------------------------------------------------------------===// - -namespace llvm { - -bool RPCChannel::createServer() { return false; } - -bool RPCChannel::createClient() { return false; } - -bool RPCChannel::WriteBytes(const void *Data, size_t Size) { return false; } - -bool RPCChannel::ReadBytes(void *Data, size_t Size) { return false; } - -void RPCChannel::Wait() {} - -RPCChannel::~RPCChannel() {} - -} // namespace llvm