From ceadf0514bf4137dcb4f1d45351bdc121487605d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 24 Jul 2002 22:40:36 +0000 Subject: [PATCH] GCC 3.1 changes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3071 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/InductionVariable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/InductionVariable.cpp b/lib/Analysis/InductionVariable.cpp index 8637a1ab7ee..f7b72e5b9c4 100644 --- a/lib/Analysis/InductionVariable.cpp +++ b/lib/Analysis/InductionVariable.cpp @@ -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(Start)) if (const ConstantInt *CStep = dyn_cast(Step)) {