From: Evan Cheng Date: Tue, 20 Apr 2010 17:27:38 +0000 (+0000) Subject: Typo. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d6060a4ce94424e0fd7b926d7cb41799b6debe4a;p=oota-llvm.git Typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101914 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineCSE.cpp b/lib/CodeGen/MachineCSE.cpp index 597d51d4f37..c70905b539b 100644 --- a/lib/CodeGen/MachineCSE.cpp +++ b/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 &Children = Node->getChildren(); for (unsigned i = 0, e = Children.size(); i != e; ++i) Changed |= ProcessBlock(Children[i]);