GCC 3.1 changes
authorChris Lattner <sabre@nondot.org>
Wed, 24 Jul 2002 22:40:36 +0000 (22:40 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 24 Jul 2002 22:40:36 +0000 (22:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3071 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InductionVariable.cpp

index 8637a1ab7ee6d6af61b276981b2822c17d952d71..f7b72e5b9c4614d03fe495ccd14d6682832ce3c9 100644 (file)
@@ -39,7 +39,7 @@ static bool isLoopInvariant(const Value *V, const Loop *L) {
 
 enum InductionVariable::iType
 InductionVariable::Classify(const Value *Start, const Value *Step,
-                           const Loop *L = 0) {
+                           const Loop *L) {
   // Check for cannonical and simple linear expressions now...
   if (const ConstantInt *CStart = dyn_cast<ConstantInt>(Start))
     if (const ConstantInt *CStep = dyn_cast<ConstantInt>(Step)) {