aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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