aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/MachineCSE.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-04-20 17:27:38 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-04-20 17:27:38 +0000
commitd6060a4ce94424e0fd7b926d7cb41799b6debe4a (patch)
tree53be35ef39fba5b2ae3edd38a660853e81ba90b9 /lib/CodeGen/MachineCSE.cpp
parenteff666f1086be2da21a73b4d9ee904230891dd5f (diff)
downloadexternal_llvm-d6060a4ce94424e0fd7b926d7cb41799b6debe4a.zip
external_llvm-d6060a4ce94424e0fd7b926d7cb41799b6debe4a.tar.gz
external_llvm-d6060a4ce94424e0fd7b926d7cb41799b6debe4a.tar.bz2
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineCSE.cpp')
-rw-r--r--lib/CodeGen/MachineCSE.cpp2
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]);