aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-05-02 00:05:03 +0000
committerDan Gohman <gohman@apple.com>2008-05-02 00:05:03 +0000
commit14a027d0de763a09b14ea86975d7e03b67f060d2 (patch)
tree078b5526df723df588b3a2c82eb43e1222ffbca6 /lib/CodeGen
parent111e04ee9ba119e8b0d66f6b21b10f5ffc59015b (diff)
downloadexternal_llvm-14a027d0de763a09b14ea86975d7e03b67f060d2.zip
external_llvm-14a027d0de763a09b14ea86975d7e03b67f060d2.tar.gz
external_llvm-14a027d0de763a09b14ea86975d7e03b67f060d2.tar.bz2
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50562 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index dfd422a..18bb040 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -3409,7 +3409,7 @@ UpdateNodeOperands(SDOperand InN, SDOperandPtr Ops, unsigned NumOps) {
if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
return SDOperand(Existing, InN.ResNo);
- // Nope it doesn't. Remove the node from it's current place in the maps.
+ // Nope it doesn't. Remove the node from its current place in the maps.
if (InsertPos)
RemoveNodeFromCSEMaps(N);