[ORC] Suppress an ORCv1 deprecation warning.

llvm-svn: 366485
This commit is contained in:
Lang Hames 2019-07-18 19:55:42 +00:00
parent e1eabcdfad
commit 9e52d0576a
1 changed files with 2 additions and 1 deletions

View File

@ -316,7 +316,8 @@ public:
if (auto Err = CtorRunner.runViaLayer(*this))
return std::move(Err);
IRStaticDestructorRunners.emplace_back(std::move(DtorNames), K);
IRStaticDestructorRunners.emplace_back(AcknowledgeORCv1Deprecation,
std::move(DtorNames), K);
return K;
}