summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
diff options
context:
space:
mode:
authorMichael Kuperstein <mkuper@google.com>2017-02-13 23:42:27 +0000
committerMichael Kuperstein <mkuper@google.com>2017-02-13 23:42:27 +0000
commit47a8b6829c716aaf21b2173e71e05f5ff409cad0 (patch)
treec9a37f4447fce2d1e4a3e011e26914d372cae019 /llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
parent709f1c2a9bf8482ba457a7e16fee0400bc889a1e (diff)
downloadbcm5719-llvm-47a8b6829c716aaf21b2173e71e05f5ff409cad0.tar.gz
bcm5719-llvm-47a8b6829c716aaf21b2173e71e05f5ff409cad0.zip
Silence redundant semicolon warnings. NFC.
llvm-svn: 295005
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp')
-rw-r--r--llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
index 71de38db442..ae2d18e3d75 100644
--- a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
@@ -146,13 +146,13 @@ private:
void freeVoidBool(bool B) {
-};
+}
TEST(DummyRPC, TestFreeFunctionHandler) {
Queue Q1, Q2;
DummyRPCEndpoint Server(Q2, Q1);
Server.addHandler<DummyRPCAPI::VoidBool>(freeVoidBool);
-};
+}
TEST(DummyRPC, TestAsyncVoidBool) {
Queue Q1, Q2;
OpenPOWER on IntegriCloud