aboutsummaryrefslogtreecommitdiffstats
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
parent3f5569152c579ef820bfaea088599312b0590826 (diff)
downloadexternal_llvm-ceadf0514bf4137dcb4f1d45351bdc121487605d.zip
external_llvm-ceadf0514bf4137dcb4f1d45351bdc121487605d.tar.gz
external_llvm-ceadf0514bf4137dcb4f1d45351bdc121487605d.tar.bz2
GCC 3.1 changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3071 91177308-0d34-0410-b5e6-96231b3b80d8
-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 8637a1a..f7b72e5 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)) {