summaryrefslogtreecommitdiffstats
path: root/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2016-09-11 21:34:13 +0000
committerLang Hames <lhames@gmail.com>2016-09-11 21:34:13 +0000
commit958b699883f6e05e930fd4c40b3d1054839e5d1d (patch)
tree94e9260990aca0bfa0ef576d1006e0c650472478 /llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5
parent8b4e4af5ed77adcca62380a85b7688045367c661 (diff)
downloadbcm5719-llvm-958b699883f6e05e930fd4c40b3d1054839e5d1d.tar.gz
bcm5719-llvm-958b699883f6e05e930fd4c40b3d1054839e5d1d.zip
[ORC] Update examples for header changes in r281171.
llvm-svn: 281178
Diffstat (limited to 'llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5')
-rw-r--r--llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
index 869d0a7ef39..c95532e8db3 100644
--- a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
+++ b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
@@ -14,7 +14,7 @@
#ifndef LLVM_TOOLS_LLI_REMOTEJITUTILS_H
#define LLVM_TOOLS_LLI_REMOTEJITUTILS_H
-#include "llvm/ExecutionEngine/Orc/RPCChannel.h"
+#include "llvm/ExecutionEngine/Orc/RPCByteChannel.h"
#include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
#include <mutex>
@@ -25,7 +25,7 @@
#endif
/// RPC channel that reads from and writes from file descriptors.
-class FDRPCChannel final : public llvm::orc::remote::RPCChannel {
+class FDRPCChannel final : public llvm::orc::remote::RPCByteChannel {
public:
FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {}
OpenPOWER on IntegriCloud