blob: 4fda9e77c28e3e82266b66cb8f9f39658707c47e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//===- llvm/Transforms/Scalar/IndVarSimplify.h - IV Eliminate ----*- C++ -*--=//
//
// InductionVariableSimplify - Transform induction variables in a program
// to all use a single cannonical induction variable per loop.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_SCALAR_INDVARSIMPLIFY_H
#define LLVM_TRANSFORMS_SCALAR_INDVARSIMPLIFY_H
class Pass;
Pass *createIndVarSimplifyPass();
#endif
|