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

removes noop moves.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21183 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-04-09 16:24:20 +00:00
parent 799a919dbc
commit 8e7d87b228

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;
}