aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-29 20:18:00 +0000
committerChris Lattner <sabre@nondot.org>2002-04-29 20:18:00 +0000
commit94cf3b1c67017cfefcdb81bc8ce705297efc4dfb (patch)
treece4f59075e48ac2991d69e14edc03aac6a5b4bea /include/llvm/Transforms
parent8ac58a83eb992c6ee342f9ce7d729971fd000715 (diff)
Remove unused files: This is the old induction varaible cannonicalization
pass built on top of interval analysis git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/Scalar/InductionVars.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/llvm/Transforms/Scalar/InductionVars.h b/include/llvm/Transforms/Scalar/InductionVars.h
deleted file mode 100644
index 704617c594..0000000000
--- a/include/llvm/Transforms/Scalar/InductionVars.h
+++ /dev/null
@@ -1,27 +0,0 @@
-//===-- InductionVars.h - Induction Variable Recognition ---------*- C++ -*--=//
-//
-// This family of functions is useful for Induction variable recognition,
-// removal and optimizations.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_OPT_INDUCTION_VARS_H
-#define LLVM_OPT_INDUCTION_VARS_H
-
-#include "llvm/Pass.h"
-class IntervalPartition;
-
-struct InductionVariableCannonicalize : public FunctionPass {
- const char *getPassName() const { return "**OLD IndVars ***"; }
-
- // doInductionVariableCannonicalize - Simplify induction variables in loops
- //
- static bool doIt(Function *F, IntervalPartition &IP);
-
- virtual bool runOnFunction(Function *F);
-
- // getAnalysisUsage - Declare that we need IntervalPartitions
- void getAnalysisUsage(AnalysisUsage &AU) const;
-};
-
-#endif