1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[ORC] Update examples for header changes in r281171.

llvm-svn: 281178
This commit is contained in:
Lang Hames 2016-09-11 21:34:13 +00:00
parent 741d2475c1
commit 5c5b142136

View File

@ -14,7 +14,7 @@
#ifndef LLVM_TOOLS_LLI_REMOTEJITUTILS_H #ifndef LLVM_TOOLS_LLI_REMOTEJITUTILS_H
#define 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 "llvm/ExecutionEngine/RTDyldMemoryManager.h"
#include <mutex> #include <mutex>
@ -25,7 +25,7 @@
#endif #endif
/// RPC channel that reads from and writes from file descriptors. /// 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: public:
FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {}