It is pointless to turn a UINT_TO_FP into an
[oota-llvm.git] / lib / Analysis / LoopInfo.cpp
index 1b04f0674a161b6e0959e5b24bf7a50164e6c1d1..b6c6c5ffc0b837fa7c2ea14ff517608be5713787 100644 (file)
@@ -29,7 +29,7 @@ using namespace llvm;
 
 char LoopInfo::ID = 0;
 static RegisterPass<LoopInfo>
-X("loops", "Natural Loop Construction", false, true);
+X("loops", "Natural Loop Construction", true, true);
 
 //===----------------------------------------------------------------------===//
 // Loop implementation
@@ -51,6 +51,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)