diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-21 22:38:59 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-21 22:38:59 +0000 |
commit | 79acd2b51ff81db67d8383ec117039cb99fdc04d (patch) | |
tree | cd861a3385922946a7834fc7f1eea0e1bb5797b3 | |
parent | 1d8973b499c3fa5d6d85c83316a49d1dc28a1c62 (diff) |
Fix grammaros in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53884 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 882985f662..4fa5f58020 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3638,7 +3638,7 @@ UpdateNodeOperands(SDOperand InN, SDOperand Op) { if (SDNode *Existing = FindModifiedNodeSlot(N, Op, 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); @@ -3667,7 +3667,7 @@ UpdateNodeOperands(SDOperand InN, SDOperand Op1, SDOperand Op2) { if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, 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); |