there is no need to remove this instruction, linscan does it already as it

removes noop moves.

llvm-svn: 21183
This commit is contained in:
Chris Lattner 2005-04-09 16:24:20 +00:00
parent f408e9a07b
commit 77ab286605

View File

@ -199,11 +199,6 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
}
}
// If we inserted a placeholder instruction at the entry of the block, remove
// it now.
if (fn.livein_begin() != fn.livein_end())
fn.begin()->erase(fn.begin()->begin());
DEBUG(dump());
return true;
}