diff options
| author | Owen Anderson <resistor@mac.com> | 2010-07-21 22:09:45 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2010-07-21 22:09:45 +0000 |
| commit | a57b97e7e7d4bd44ebc90c743e6db318fa5348d6 (patch) | |
| tree | 9064f2c1398c305ffb7d95bbe8aafdb1629cdf96 /llvm/lib/CodeGen/Splitter.cpp | |
| parent | 26d0aa19d4dfe2c4250a02dc1df9d6097c45ab05 (diff) | |
| download | bcm5719-llvm-a57b97e7e7d4bd44ebc90c743e6db318fa5348d6.tar.gz bcm5719-llvm-a57b97e7e7d4bd44ebc90c743e6db318fa5348d6.zip | |
Fix batch of converting RegisterPass<> to INTIALIZE_PASS().
llvm-svn: 109045
Diffstat (limited to 'llvm/lib/CodeGen/Splitter.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/Splitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/Splitter.cpp b/llvm/lib/CodeGen/Splitter.cpp index 09983f6dfa8..38f3b1f4d35 100644 --- a/llvm/lib/CodeGen/Splitter.cpp +++ b/llvm/lib/CodeGen/Splitter.cpp @@ -29,8 +29,8 @@ using namespace llvm; char LoopSplitter::ID = 0; -static RegisterPass<LoopSplitter> -X("loop-splitting", "Split virtual regists across loop boundaries."); +INITIALIZE_PASS(LoopSplitter, "loop-splitting", + "Split virtual regists across loop boundaries.", false, false); namespace llvm { |

