summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2017-01-07 22:48:12 +0000
committerLang Hames <lhames@gmail.com>2017-01-07 22:48:12 +0000
commitd65748652bc853eeeeefd9319650688149c5e2ec (patch)
treeb10b2f7942e7c2dc77d98273bea05690404e2c7d /llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
parentd659557b5db1430578faa1e4120374b6a8f0ddcc (diff)
downloadbcm5719-llvm-d65748652bc853eeeeefd9319650688149c5e2ec.tar.gz
bcm5719-llvm-d65748652bc853eeeeefd9319650688149c5e2ec.zip
[Orc][RPC] Rename Single/MultiThreadedRPC to Single/MultithreadedRPCEndpoint.
llvm-svn: 291374
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp')
-rw-r--r--llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
index 381fd103042..c2dca225c12 100644
--- a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
@@ -137,11 +137,10 @@ public:
};
-class DummyRPCEndpoint : public DummyRPCAPI,
- public SingleThreadedRPC<QueueChannel> {
+class DummyRPCEndpoint : public SingleThreadedRPCEndpoint<QueueChannel> {
public:
DummyRPCEndpoint(Queue &Q1, Queue &Q2)
- : SingleThreadedRPC(C, true), C(Q1, Q2) {}
+ : SingleThreadedRPCEndpoint(C, true), C(Q1, Q2) {}
private:
QueueChannel C;
};
OpenPOWER on IntegriCloud