diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2017-01-11 07:53:12 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2017-01-11 07:53:12 +0000 |
commit | 80813b157ebb4ae11fcc80bd1c95363218cf6f9c (patch) | |
tree | 8d1d6846f0d915334b0d42636b8a8d3d40313695 /llvm/unittests/Analysis/LoopPassManagerTest.cpp | |
parent | d3435487bfb0c828df3670ec0865eececaaa79d7 (diff) | |
download | bcm5719-llvm-80813b157ebb4ae11fcc80bd1c95363218cf6f9c.tar.gz bcm5719-llvm-80813b157ebb4ae11fcc80bd1c95363218cf6f9c.zip |
[PM] Another attempt to satisfy MSVC.
llvm-svn: 291655
Diffstat (limited to 'llvm/unittests/Analysis/LoopPassManagerTest.cpp')
-rw-r--r-- | llvm/unittests/Analysis/LoopPassManagerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Analysis/LoopPassManagerTest.cpp b/llvm/unittests/Analysis/LoopPassManagerTest.cpp index 73e248dc84c..97c27987909 100644 --- a/llvm/unittests/Analysis/LoopPassManagerTest.cpp +++ b/llvm/unittests/Analysis/LoopPassManagerTest.cpp @@ -83,7 +83,7 @@ protected: run(_, _, testing::Matcher<ExtraArgTs>(_)...)) .WillByDefault(Return(this->getResult())); ON_CALL(static_cast<DerivedT &>(*this), invalidate(_, _, _)) - .WillByDefault(Invoke([](IRUnitT &, const PreservedAnalyses &PA, + .WillByDefault(Invoke([](IRUnitT &IR, const PreservedAnalyses &PA, typename AnalysisManagerT::Invalidator &Inv) { auto PAC = PA.template getChecker<Analysis>(); return !PAC.preserved() && |