Added FIXME for future Hexagon cleanup.

llvm-svn: 176400
This commit is contained in:
Andrew Trick 2013-03-02 01:43:08 +00:00
parent 739e37a0d2
commit 63474629e8
1 changed files with 3 additions and 0 deletions

View File

@ -159,6 +159,9 @@ void VLIWMachineScheduler::schedule() {
SchedImpl->initialize(this);
// To view Height/Depth correctly, they should be accessed at least once.
//
// FIXME: SUnit::dumpAll always recompute depth and height now. The max
// depth/height could be computed directly from the roots and leaves.
DEBUG(unsigned maxH = 0;
for (unsigned su = 0, e = SUnits.size(); su != e; ++su)
if (SUnits[su].getHeight() > maxH)