Fix Remote MCJIT on Windows
authorRenato Golin <renato.golin@linaro.org>
Tue, 14 Jan 2014 22:59:11 +0000 (22:59 +0000)
committerRenato Golin <renato.golin@linaro.org>
Tue, 14 Jan 2014 22:59:11 +0000 (22:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199268 91177308-0d34-0410-b5e6-96231b3b80d8

tools/lli/Windows/RemoteTargetExternal.inc

index aef46279455a5614d480543d2413806259f06d77..0a4dba664d7978d21d68e039a4138f4a8e9ddb6a 100644 (file)
 
 namespace llvm {
 
-void RemoteTargetExternal::create() {
+bool RemoteTargetExternal::create() {
+  return false;
 }
 
-int RemoteTargetExternal::WriteBytes(const void *Data, size_t Size) {
-  return 0;
+bool RemoteTargetExternal::WriteBytes(const void *Data, size_t Size) {
+  return false;
 }
 
-int RemoteTargetExternal::ReadBytes(void *Data, size_t Size) {
-  return 0;
+bool RemoteTargetExternal::ReadBytes(void *Data, size_t Size) {
+  return false;
 }
 
 void RemoteTargetExternal::Wait() {