From e669caafe0276d2354c7137ac513670706bb718f Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Fri, 27 Feb 2004 06:11:15 +0000 Subject: Rename member function to be consistent with the rest. llvm-svn: 11898 --- llvm/lib/CodeGen/RegAllocLinearScan.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/CodeGen/RegAllocLinearScan.cpp') diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index 42029dc6b0a..9e396186827 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/lib/CodeGen/RegAllocLinearScan.cpp @@ -459,7 +459,7 @@ void RA::assignRegOrStackSlotAtInterval(IntervalPtrs::value_type cur) } else { prt_->delRegUse(vrm_->getPhys(i->reg)); - vrm_->clearVirtReg(i->reg); + vrm_->clearVirt(i->reg); if (i->spilled()) { if (!i->empty()) { IntervalPtrs::iterator it = unhandled_.begin(); @@ -479,7 +479,7 @@ void RA::assignRegOrStackSlotAtInterval(IntervalPtrs::value_type cur) if (MRegisterInfo::isPhysicalRegister(i->reg)) fixed_.push_front(i); else { - vrm_->clearVirtReg(i->reg); + vrm_->clearVirt(i->reg); if (i->spilled()) { if (!i->empty()) { IntervalPtrs::iterator it = unhandled_.begin(); @@ -497,7 +497,7 @@ void RA::assignRegOrStackSlotAtInterval(IntervalPtrs::value_type cur) if (MRegisterInfo::isPhysicalRegister(i->reg)) fixed_.push_front(i); else { - vrm_->clearVirtReg(i->reg); + vrm_->clearVirt(i->reg); unhandled_.push_front(i); } } -- cgit v1.2.3