mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
Add capability to print a derived interval graph
llvm-svn: 42
This commit is contained in:
parent
09e6e27f2c
commit
3f0d248cea
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user