summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/RegAllocLinearScan.cpp
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2003-12-18 08:56:11 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2003-12-18 08:56:11 +0000
commit4d87219486f2c4eceb97d796f822a404fff55b65 (patch)
tree942959d24a62393370cbcf4768dd371c260d0f0f /llvm/lib/CodeGen/RegAllocLinearScan.cpp
parent15b8036b291c09cff0e22c76030a97caf842ba7e (diff)
downloadbcm5719-llvm-4d87219486f2c4eceb97d796f822a404fff55b65.tar.gz
bcm5719-llvm-4d87219486f2c4eceb97d796f822a404fff55b65.zip
Rename LiveIntervals::expired() to LiveIntervals::expiredAt().
llvm-svn: 10511
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r--llvm/lib/CodeGen/RegAllocLinearScan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp
index 9e8089a35e5..75d213de115 100644
--- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp
+++ b/llvm/lib/CodeGen/RegAllocLinearScan.cpp
@@ -464,7 +464,7 @@ void RA::processActiveIntervals(Intervals::const_iterator cur)
// an interval expires this is going to be the last use. in
// this case we can reuse the register for a def in the same
// instruction
- if ((*i)->expired(cur->start() + 1)) {
+ if ((*i)->expiredAt(cur->start() + 1)) {
DEBUG(std::cerr << "\t\tinterval " << **i << " expired\n");
if (reg < MRegisterInfo::FirstVirtualRegister) {
clearReservedPhysReg(reg);
OpenPOWER on IntegriCloud