diff options
| -rw-r--r-- | llvm/lib/CodeGen/MachineCSE.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineCSE.cpp b/llvm/lib/CodeGen/MachineCSE.cpp index 597d51d4f37..c70905b539b 100644 --- a/llvm/lib/CodeGen/MachineCSE.cpp +++ b/llvm/lib/CodeGen/MachineCSE.cpp @@ -356,7 +356,7 @@ bool MachineCSE::ProcessBlock(MachineDomTreeNode *Node) {      CSEPairs.clear();    } -  // Recursively call ProcessBlock with childred. +  // Recursively call ProcessBlock with children.    const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();    for (unsigned i = 0, e = Children.size(); i != e; ++i)      Changed |= ProcessBlock(Children[i]);  | 

