diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-07-19 23:35:55 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-07-19 23:35:55 +0000 |
commit | da77c44c2c008271d802954706350518b2683e76 (patch) | |
tree | 6acbd2d9ca94930532dfad89e85a36ab813f74fa /lib/CodeGen/RegAllocLinearScan.cpp | |
parent | a32355bb8e82ba7162707f6c833680a929f4f763 (diff) |
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15011 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocLinearScan.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp index dbed7973fc..4a55df1893 100644 --- a/lib/CodeGen/RegAllocLinearScan.cpp +++ b/lib/CodeGen/RegAllocLinearScan.cpp @@ -123,23 +123,6 @@ namespace { std::cerr << mri_->getName(reg) << '\n'; } } - -// void verifyAssignment() const { -// for (Virt2PhysMap::const_iterator i = v2pMap_.begin(), -// e = v2pMap_.end(); i != e; ++i) -// for (Virt2PhysMap::const_iterator i2 = next(i); i2 != e; ++i2) -// if (MRegisterInfo::isVirtualRegister(i->second) && -// (i->second == i2->second || -// mri_->areAliases(i->second, i2->second))) { -// const Interval -// &in = li_->getInterval(i->second), -// &in2 = li_->getInterval(i2->second); -// if (in.overlaps(in2)) { -// std::cerr << in << " overlaps " << in2 << '\n'; -// assert(0); -// } -// } -// } }; } |