diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-18 05:27:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-18 05:27:33 +0000 |
commit | 42c9c2cce4894cc608f0c1cdb5102384778686f0 (patch) | |
tree | f63b534f4c783959ab07121663b4c68f8bb1bab4 /lib/Transforms/Scalar | |
parent | a36941c069cfedb59d53e84e21ee591d6b8af002 (diff) | |
download | external_llvm-42c9c2cce4894cc608f0c1cdb5102384778686f0.zip external_llvm-42c9c2cce4894cc608f0c1cdb5102384778686f0.tar.gz external_llvm-42c9c2cce4894cc608f0c1cdb5102384778686f0.tar.bz2 |
Convert to new simpler pass itf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar')
-rw-r--r-- | lib/Transforms/Scalar/InductionVars.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InductionVars.cpp b/lib/Transforms/Scalar/InductionVars.cpp index 9a8eb12..1cec66d 100644 --- a/lib/Transforms/Scalar/InductionVars.cpp +++ b/lib/Transforms/Scalar/InductionVars.cpp @@ -371,7 +371,7 @@ static bool ProcessIntervalPartition(cfg::IntervalPartition &IP) { // This function loops over an interval partition of a program, reducing it // until the graph is gone. // -bool opt::DoInductionVariableCannonicalize(Method *M) { +bool opt::InductionVariableCannonicalize::doIt(Method *M) { // TODO: REMOVE if (0) { // Print basic blocks with their depth LoopDepthCalculator LDC(M); |