diff options
| author | Owen Anderson <resistor@mac.com> | 2010-10-12 19:48:12 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2010-10-12 19:48:12 +0000 |
| commit | cdb0c03397e05fb01ed67a7caaa5f82ec993c564 (patch) | |
| tree | 3d927ef6d1022512fda69b1ac7d010a9bee3a0ce /lib/Transforms/IPO/LoopExtractor.cpp | |
| parent | cad34cb5624984e13da89c8351a3831665c1944f (diff) | |
| download | external_llvm-cdb0c03397e05fb01ed67a7caaa5f82ec993c564.zip external_llvm-cdb0c03397e05fb01ed67a7caaa5f82ec993c564.tar.gz external_llvm-cdb0c03397e05fb01ed67a7caaa5f82ec993c564.tar.bz2 | |
Begin adding static dependence information to passes, which will allow us to
perform initialization without static constructors AND without explicit initialization
by the client. For the moment, passes are required to initialize both their
(potential) dependencies and any passes they preserve. I hope to be able to relax
the latter requirement in the future.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116334 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/LoopExtractor.cpp')
| -rw-r--r-- | lib/Transforms/IPO/LoopExtractor.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/LoopExtractor.cpp b/lib/Transforms/IPO/LoopExtractor.cpp index 09f80a9..f9e1671 100644 --- a/lib/Transforms/IPO/LoopExtractor.cpp +++ b/lib/Transforms/IPO/LoopExtractor.cpp @@ -50,7 +50,12 @@ namespace { } char LoopExtractor::ID = 0; -INITIALIZE_PASS(LoopExtractor, "loop-extract", +INITIALIZE_PASS_BEGIN(LoopExtractor, "loop-extract", + "Extract loops into new functions", false, false) +INITIALIZE_PASS_DEPENDENCY(BreakCriticalEdges) +INITIALIZE_PASS_DEPENDENCY(LoopSimplify) +INITIALIZE_PASS_DEPENDENCY(DominatorTree) +INITIALIZE_PASS_END(LoopExtractor, "loop-extract", "Extract loops into new functions", false, false) namespace { |
