Rename getABITypeSize to getTypePaddedSize, as
[oota-llvm.git] / lib / Analysis / LoopInfo.cpp
index e136f2930f6f92cca21260ceb78c54d43365cdfd..275331b03a58f952f0298d7dde3fc7ec54fb4559 100644 (file)
@@ -29,15 +29,12 @@ using namespace llvm;
 
 char LoopInfo::ID = 0;
 static RegisterPass<LoopInfo>
-X("loops", "Natural Loop Construction", true);
+X("loops", "Natural Loop Construction", true, true);
 
 //===----------------------------------------------------------------------===//
 // Loop implementation
 //
 
-/// getNumBackEdges - Calculate the number of back edges to the loop header.
-///
-
 //===----------------------------------------------------------------------===//
 // LoopInfo implementation
 //
@@ -51,6 +48,3 @@ void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
   AU.setPreservesAll();
   AU.addRequired<DominatorTree>();
 }
-
-// Ensure this file gets linked when LoopInfo.h is used.
-DEFINING_FILE_FOR(LoopInfo)