summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-07-21 22:38:59 +0000
committerDan Gohman <gohman@apple.com>2008-07-21 22:38:59 +0000
commitebeccb44cf10ecfb146374cc778c71085ce03eb1 (patch)
tree6faba3960ed14a47c75df502598d0c8b786982ea /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parentd7352d6801f3bae265c75e9d2d9d2eba3d1c802d (diff)
downloadbcm5719-llvm-ebeccb44cf10ecfb146374cc778c71085ce03eb1.tar.gz
bcm5719-llvm-ebeccb44cf10ecfb146374cc778c71085ce03eb1.zip
Fix grammaros in comments.
llvm-svn: 53884
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 882985f6624..4fa5f580208 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/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);
OpenPOWER on IntegriCloud