aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-02-03 07:30:27 +0000
committerChris Lattner <sabre@nondot.org>2008-02-03 07:30:27 +0000
commit9d3e5d476c4478d2837760a9bf43fedb8a5a7e51 (patch)
treeab507a772c737b164a9644ffe77ee60f26f8271f
parent63ec90a6a8e0e441a1560f4386c5b6d538ad6583 (diff)
Fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46682 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/SelectionDAG/LegalizeTypes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp b/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
index 76b7527f68..f09a311c06 100644
--- a/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
+++ b/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
@@ -233,7 +233,7 @@ namespace {
virtual void NodeUpdated(SDNode *N) {
// Node updates can mean pretty much anything. It is possible that an
// operand was set to something already processed (f.e.) in which case
- // this node could become ready. Recompoute its flags.
+ // this node could become ready. Recompute its flags.
if (N->getNodeId() != DAGTypeLegalizer::ReadyToProcess)
DTL.ReanalyzeNodeFlags(N);
}