mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Add capability to print a derived interval graph
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ed465bc265
commit
568320595c
@ -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