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 | d133dfff23ca39e3ea76cb38ff0675a61b9d7ac0 (patch) | |
tree | 53be35ef39fba5b2ae3edd38a660853e81ba90b9 /lib | |
parent | 24626757097db515a1854065a109cbfe58663701 (diff) | |
download | external_llvm-d133dfff23ca39e3ea76cb38ff0675a61b9d7ac0.zip external_llvm-d133dfff23ca39e3ea76cb38ff0675a61b9d7ac0.tar.gz external_llvm-d133dfff23ca39e3ea76cb38ff0675a61b9d7ac0.tar.bz2 |
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/MachineCSE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineCSE.cpp b/lib/CodeGen/MachineCSE.cpp index 597d51d..c70905b 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<MachineDomTreeNode*> &Children = Node->getChildren(); for (unsigned i = 0, e = Children.size(); i != e; ++i) Changed |= ProcessBlock(Children[i]); |