[llvm-commits] [llvm] r67524 - /llvm/trunk/lib/Analysis/LoopVR.cpp

Dan Gohman gohman at apple.com
Mon Mar 23 08:50:53 PDT 2009


Author: djg
Date: Mon Mar 23 10:50:52 2009
New Revision: 67524

URL: http://llvm.org/viewvc/llvm-project?rev=67524&view=rev
Log:
LoopVR is not CFGOnly.

Modified:
    llvm/trunk/lib/Analysis/LoopVR.cpp

Modified: llvm/trunk/lib/Analysis/LoopVR.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LoopVR.cpp?rev=67524&r1=67523&r2=67524&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/LoopVR.cpp (original)
+++ llvm/trunk/lib/Analysis/LoopVR.cpp Mon Mar 23 10:50:52 2009
@@ -23,7 +23,7 @@
 using namespace llvm;
 
 char LoopVR::ID = 0;
-static RegisterPass<LoopVR> X("loopvr", "Loop Value Ranges", true, true);
+static RegisterPass<LoopVR> X("loopvr", "Loop Value Ranges", false, true);
 
 /// getRange - determine the range for a particular SCEV within a given Loop
 ConstantRange LoopVR::getRange(SCEVHandle S, Loop *L, ScalarEvolution &SE) {





More information about the llvm-commits mailing list