diff options
author | Owen Anderson <resistor@mac.com> | 2010-08-06 00:23:35 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-08-06 00:23:35 +0000 |
commit | bda59bd247b1153e4bc19f85dee4cb594b9c2b32 (patch) | |
tree | 669b82d1ff890ce19f7c3ad68f66975f9eafb681 /llvm/lib/Analysis/LoopPass.cpp | |
parent | 396e041f5eac1cf6eda07e94ff34c3f2f4905ead (diff) | |
download | llvm-bda59bd247b1153e4bc19f85dee4cb594b9c2b32.zip llvm-bda59bd247b1153e4bc19f85dee4cb594b9c2b32.tar.gz llvm-bda59bd247b1153e4bc19f85dee4cb594b9c2b32.tar.bz2 |
Revert r110396 to fix buildbots.
llvm-svn: 110410
Diffstat (limited to 'llvm/lib/Analysis/LoopPass.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopPass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/LoopPass.cpp b/llvm/lib/Analysis/LoopPass.cpp index 717e016..2727d2f 100644 --- a/llvm/lib/Analysis/LoopPass.cpp +++ b/llvm/lib/Analysis/LoopPass.cpp @@ -30,9 +30,9 @@ private: public: static char ID; - PrintLoopPass() : LoopPass(ID), Out(dbgs()) {} + PrintLoopPass() : LoopPass(&ID), Out(dbgs()) {} PrintLoopPass(const std::string &B, raw_ostream &o) - : LoopPass(ID), Banner(B), Out(o) {} + : LoopPass(&ID), Banner(B), Out(o) {} virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); @@ -59,7 +59,7 @@ char PrintLoopPass::ID = 0; char LPPassManager::ID = 0; LPPassManager::LPPassManager(int Depth) - : FunctionPass(ID), PMDataManager(Depth) { + : FunctionPass(&ID), PMDataManager(Depth) { skipThisLoop = false; redoThisLoop = false; LI = NULL; |