diff options
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index c820464c1da..d91f01faf40 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -95,6 +95,8 @@ #include <algorithm> using namespace llvm; + + #define DEBUG_TYPE "scalar-evolution" STATISTIC(NumArrayLenItCounts, @@ -113,6 +115,8 @@ MaxBruteForceIterations("scalar-evolution-max-iterations", cl::ReallyHidden, "derived loop"), cl::init(100)); + + // FIXME: Enable this with EXPENSIVE_CHECKS when the test suite is clean. static cl::opt<bool> VerifySCEV("verify-scev", |