Change over to use new style pass mechanism, now passes only expose small
[oota-llvm.git] / include / llvm / Transforms / Scalar / IndVarSimplify.h
1 //===- llvm/Transforms/Scalar/IndVarSimplify.h - IV Eliminate ----*- C++ -*--=//
2 //
3 // InductionVariableSimplify - Transform induction variables in a program
4 //   to all use a single cannonical induction variable per loop.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_TRANSFORMS_SCALAR_INDVARSIMPLIFY_H
9 #define LLVM_TRANSFORMS_SCALAR_INDVARSIMPLIFY_H
10
11 class Pass;
12 Pass *createIndVarSimplifyPass();
13
14 #endif