Delete the RegScavenging constructor that takes a MachineBasicBlock

argument. Nothing was using it, and it set the MBB member without
calling enterBasicBlock, which was problematic.

llvm-svn: 61234
This commit is contained in:
Dan Gohman 2008-12-19 00:34:32 +00:00
parent dde7df9de2
commit 4293cea3e5
1 changed files with 0 additions and 4 deletions

View File

@ -86,10 +86,6 @@ public:
: MBB(NULL), NumPhysRegs(0), Tracking(false),
ScavengingFrameIndex(-1), ScavengedReg(0), ScavengedRC(NULL) {}
explicit RegScavenger(MachineBasicBlock *mbb)
: MBB(mbb), NumPhysRegs(0), Tracking(false),
ScavengingFrameIndex(-1), ScavengedReg(0), ScavengedRC(NULL) {}
/// enterBasicBlock - Start tracking liveness from the begin of the specific
/// basic block.
void enterBasicBlock(MachineBasicBlock *mbb);