aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Transforms/Scalar/InductionVars.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/InductionVars.cpp b/lib/Transforms/Scalar/InductionVars.cpp
index a4bb983..e2f2ad9 100644
--- a/lib/Transforms/Scalar/InductionVars.cpp
+++ b/lib/Transforms/Scalar/InductionVars.cpp
@@ -40,5 +40,14 @@ bool DoInductionVariableCannonicalize(Method *M) {
// This currently just prints out information about the interval structure
// of the method...
for_each(Intervals.begin(), Intervals.end(), PrintIntervalInfo);
+
+ cerr << "*************Reduced Interval**************\n\n";
+
+ cfg::IntervalPartition Intervals2(Intervals, false);
+
+ // This currently just prints out information about the interval structure
+ // of the method...
+ for_each(Intervals2.begin(), Intervals2.end(), PrintIntervalInfo);
+
return false;
}