aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/InductionVariable.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-24 22:40:36 +0000
committerChris Lattner <sabre@nondot.org>2002-07-24 22:40:36 +0000
commitceadf0514bf4137dcb4f1d45351bdc121487605d (patch)
tree67636e53c337038c065fccadc9ffe283187e2478 /lib/Analysis/InductionVariable.cpp
parent3f5569152c579ef820bfaea088599312b0590826 (diff)
GCC 3.1 changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/InductionVariable.cpp')
-rw-r--r--lib/Analysis/InductionVariable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/InductionVariable.cpp b/lib/Analysis/InductionVariable.cpp
index 8637a1ab7e..f7b72e5b9c 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<ConstantInt>(Start))
if (const ConstantInt *CStep = dyn_cast<ConstantInt>(Step)) {