Remove some bad code from Legalize

llvm-svn: 23640
This commit is contained in:
Nate Begeman 2005-10-05 21:44:10 +00:00
parent bd7df030d2
commit f8221c5e2c
1 changed files with 1 additions and 4 deletions

View File

@ -2619,11 +2619,8 @@ static void FindLatestCallSeqStart(SDNode *Node, SDNode *&Found) {
// Otherwise, scan the operands of Node to see if any of them is a call.
assert(Node->getNumOperands() != 0 &&
"All leaves should have depth equal to the entry node!");
for (unsigned i = 0, e = Node->getNumOperands()-1; i != e; ++i) {
for (unsigned i = 0, e = Node->getNumOperands()-1; i != e; ++i)
FindLatestCallSeqStart(Node->getOperand(i).Val, Found);
if (Found->getOpcode() == ISD::CALLSEQ_START)
return;
}
// Tail recurse for the last iteration.
FindLatestCallSeqStart(Node->getOperand(Node->getNumOperands()-1).Val,