llvm-svn: 101914
This commit is contained in:
Evan Cheng 2010-04-20 17:27:38 +00:00
parent db6f71b02f
commit 4019d571d9
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ bool MachineCSE::ProcessBlock(MachineDomTreeNode *Node) {
CSEPairs.clear(); CSEPairs.clear();
} }
// Recursively call ProcessBlock with childred. // Recursively call ProcessBlock with children.
const std::vector<MachineDomTreeNode*> &Children = Node->getChildren(); const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
for (unsigned i = 0, e = Children.size(); i != e; ++i) for (unsigned i = 0, e = Children.size(); i != e; ++i)
Changed |= ProcessBlock(Children[i]); Changed |= ProcessBlock(Children[i]);