diff options
author | Lang Hames <lhames@gmail.com> | 2018-09-28 15:09:14 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2018-09-28 15:09:14 +0000 |
commit | 53e0df1c72fbb36d6fd9e0b5fcb61aeb00c3a9a3 (patch) | |
tree | a65e81c1b6092b560c84f557b71cb9fe0bcc3a63 /llvm/unittests/ExecutionEngine/Orc | |
parent | 1cbb057142c74be109693adf36654a9ee0bae23d (diff) | |
download | bcm5719-llvm-53e0df1c72fbb36d6fd9e0b5fcb61aeb00c3a9a3.tar.gz bcm5719-llvm-53e0df1c72fbb36d6fd9e0b5fcb61aeb00c3a9a3.zip |
[ORC] Fix the unit tests that were broken by r343323.
llvm-svn: 343326
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc')
-rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h index 23ca74cc364..c9a43058f7c 100644 --- a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h +++ b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h @@ -106,6 +106,8 @@ public: Destructor(); } + StringRef getName() const override { return "<Simple>"; } + void materialize(orc::MaterializationResponsibility R) override { Materialize(std::move(R)); } |