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 | 12a71ea03e037813c991e6592664d07c65f20848 (patch) | |
tree | f901224dbaa87ca6408603fcaba7ab91a437f236 /llvm/lib/CodeGen/RegAllocLinearScan.cpp | |
parent | 8e677e88f645fbfcb0243f1887f8e389b534e7ff (diff) | |
download | bcm5719-llvm-12a71ea03e037813c991e6592664d07c65f20848.tar.gz bcm5719-llvm-12a71ea03e037813c991e6592664d07c65f20848.zip |
Remove dead code.
llvm-svn: 15011
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocLinearScan.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index dbed7973fc4..4a55df18936 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/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); -// } -// } -// } }; } |