summaryrefslogtreecommitdiff
path: root/tools/lli/Windows/RemoteTargetExternal.inc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lli/Windows/RemoteTargetExternal.inc')
-rw-r--r--tools/lli/Windows/RemoteTargetExternal.inc36
1 files changed, 0 insertions, 36 deletions
diff --git a/tools/lli/Windows/RemoteTargetExternal.inc b/tools/lli/Windows/RemoteTargetExternal.inc
deleted file mode 100644
index 0a4dba664d7..00000000000
--- a/tools/lli/Windows/RemoteTargetExternal.inc
+++ /dev/null
@@ -1,36 +0,0 @@
-//= RemoteTargetExternal.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.
-//
-//===----------------------------------------------------------------------===//
-//
-// Definition of the Windows-specific parts of the RemoteTargetExternal class
-// which is meant to execute JITed code in a separate process from where it was
-// built. To support this functionality on Windows, implement these functions.
-//
-//===----------------------------------------------------------------------===//
-
-namespace llvm {
-
-bool RemoteTargetExternal::create() {
- return false;
-}
-
-bool RemoteTargetExternal::WriteBytes(const void *Data, size_t Size) {
- return false;
-}
-
-bool RemoteTargetExternal::ReadBytes(void *Data, size_t Size) {
- return false;
-}
-
-void RemoteTargetExternal::Wait() {
-}
-
-RemoteTargetExternal::~RemoteTargetExternal() {
-}
-
-} // namespace llvm