diff options
author | Lang Hames <lhames@gmail.com> | 2018-01-06 01:06:05 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2018-01-06 01:06:05 +0000 |
commit | c2ba9059d07607f99badaa41fc85c6c4d9f6bd50 (patch) | |
tree | 11fb71b23dd45efb458dc32de77aa9e2642e20f3 /llvm/unittests/ExecutionEngine | |
parent | 1f6f5f1df9a67327b7dc968a600a8e5e3a082611 (diff) | |
download | bcm5719-llvm-c2ba9059d07607f99badaa41fc85c6c4d9f6bd50.tar.gz bcm5719-llvm-c2ba9059d07607f99badaa41fc85c6c4d9f6bd50.zip |
[ORC] Fix a think-o in the current AsynchronousSymbolQuery test.
This *should* be a no-op as far as the current failure is concerned, but needs
to be fixed anyway.
llvm-svn: 321919
Diffstat (limited to 'llvm/unittests/ExecutionEngine')
-rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp index 6c33abbc811..a2bfe748350 100644 --- a/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp +++ b/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp @@ -36,7 +36,7 @@ TEST(CoreAPIsTest, AsynchronousSymbolQuerySuccessfulResolutionOnly) { auto OnReady = [&](Error Err) { cantFail(std::move(Err)); - OnResolutionRun = true; + OnReadyRun = true; }; AsynchronousSymbolQuery Q(Names, OnResolution, OnReady); |