diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-24 22:40:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-24 22:40:36 +0000 |
commit | f1ca92d42d6a7593513746045dbb8cc054419b93 (patch) | |
tree | 17c00ac27f6f492b493a6d9b63f985449a72d29d /llvm/lib/Analysis | |
parent | 834cf2978b4a42415019d58cf4c4db9c3628d7ea (diff) | |
download | bcm5719-llvm-f1ca92d42d6a7593513746045dbb8cc054419b93.tar.gz bcm5719-llvm-f1ca92d42d6a7593513746045dbb8cc054419b93.zip |
GCC 3.1 changes
llvm-svn: 3071
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/InductionVariable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InductionVariable.cpp b/llvm/lib/Analysis/InductionVariable.cpp index 8637a1ab7ee..f7b72e5b9c4 100644 --- a/llvm/lib/Analysis/InductionVariable.cpp +++ b/llvm/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<ConstantInt>(Start)) if (const ConstantInt *CStep = dyn_cast<ConstantInt>(Step)) { |