diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-04-20 17:27:38 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-04-20 17:27:38 +0000 |
commit | 4019d571d93848e7e7ba00bc8dd11ba8145c00ac (patch) | |
tree | e5824ed9c873bc1c4c7902e56fb55ac27b11c13a /llvm/lib/CodeGen/MachineCSE.cpp | |
parent | db6f71b02f88d3bccd449c07e0da00ca216c3029 (diff) | |
download | bcm5719-llvm-4019d571d93848e7e7ba00bc8dd11ba8145c00ac.tar.gz bcm5719-llvm-4019d571d93848e7e7ba00bc8dd11ba8145c00ac.zip |
Typo.
llvm-svn: 101914
Diffstat (limited to 'llvm/lib/CodeGen/MachineCSE.cpp')
-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]); |