summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-11-20 04:39:16 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-11-20 04:39:16 +0000
commitd14894059fa4bbf67ae74caa64fa5f5a23272d63 (patch)
tree9e015381b517c86cec6ccc19312ef5254b75d821 /unittests
parentd23c759c0fa10b7fb244b4d2911b49b95138a7e1 (diff)
downloadllvm-d14894059fa4bbf67ae74caa64fa5f5a23272d63.tar.gz
llvm-d14894059fa4bbf67ae74caa64fa5f5a23272d63.tar.bz2
llvm-d14894059fa4bbf67ae74caa64fa5f5a23272d63.tar.xz
[PM] Make the function pass manager more regular.
The FunctionPassManager is now itself a function pass. When run over a function, it runs all N of its passes over that function. This is the 1:N mapping in the pass dimension only. This allows it to be used in either a ModulePassManager or potentially some other manager that works on IR units which are supersets of Functions. This commit also adds the obvious adaptor to map from a module pass to a function pass, running the function pass across every function in the module. The test has been updated to use this new pattern. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195192 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/IR/PassManagerTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/IR/PassManagerTest.cpp b/unittests/IR/PassManagerTest.cpp
index cf7b6e4748..1e02d6ba02 100644
--- a/unittests/IR/PassManagerTest.cpp
+++ b/unittests/IR/PassManagerTest.cpp
@@ -120,7 +120,7 @@ TEST_F(PassManagerTest, Basic) {
int FunctionPassRunCount = 0;
int AnalyzedInstrCount = 0;
FPM.addPass(TestFunctionPass(AM, FunctionPassRunCount, AnalyzedInstrCount));
- MPM.addPass(FPM);
+ MPM.addPass(createModuleToFunctionPassAdaptor(FPM));
MPM.run(M.get());
EXPECT_EQ(1, ModulePassRunCount);