Delete some dead code.

llvm-svn: 149717
This commit is contained in:
Jakob Stoklund Olesen 2012-02-03 21:32:06 +00:00
parent a6e543e80b
commit d29f6d792b
2 changed files with 0 additions and 8 deletions

View File

@ -63,9 +63,6 @@ namespace llvm {
/// allocatableRegs_ - A bit vector of allocatable registers.
BitVector allocatableRegs_;
/// CloneMIs - A list of clones as result of re-materialization.
std::vector<MachineInstr*> CloneMIs;
public:
static char ID; // Pass identification, replacement for typeid
LiveIntervals() : MachineFunctionPass(ID) {

View File

@ -99,11 +99,6 @@ void LiveIntervals::releaseMemory() {
// Release VNInfo memory regions, VNInfo objects don't need to be dtor'd.
VNInfoAllocator.Reset();
while (!CloneMIs.empty()) {
MachineInstr *MI = CloneMIs.back();
CloneMIs.pop_back();
mf_->DeleteMachineInstr(MI);
}
}
/// runOnMachineFunction - Register allocate the whole function