diff options
author | Lang Hames <lhames@gmail.com> | 2017-01-08 02:27:30 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2017-01-08 02:27:30 +0000 |
commit | f9419cd5d7e24a371a123d0133c5109f6af02a50 (patch) | |
tree | a21b61ed22dc6ed0e793a4abf51c47bfd500da19 /llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp | |
parent | 7f6acd05dc2ed70e7ba7a95ea70c749118e58e8c (diff) | |
download | bcm5719-llvm-f9419cd5d7e24a371a123d0133c5109f6af02a50.tar.gz bcm5719-llvm-f9419cd5d7e24a371a123d0133c5109f6af02a50.zip |
[Orc][RPC] Fix typo.
llvm-svn: 291381
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp index 23052dcb70e..e379ce72111 100644 --- a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp +++ b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp @@ -498,7 +498,7 @@ TEST(DummyRPC, TestAPICalls) { auto Err = DummyCallsAll::negotiate(Client); EXPECT_EQ(errorToErrorCode(std::move(Err)).value(), static_cast<int>(OrcErrorCode::UnknownRPCFunction)) - << "Uxpected 'UnknownRPCFunction' error for attempted negotiate of " + << "Expected 'UnknownRPCFunction' error for attempted negotiate of " "unsupported function"; } |