[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 0651e9bf34
commit 09e51c4e83

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;
}