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 | ebeccb44cf10ecfb146374cc778c71085ce03eb1 (patch) | |
tree | 6faba3960ed14a47c75df502598d0c8b786982ea /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | d7352d6801f3bae265c75e9d2d9d2eba3d1c802d (diff) | |
download | bcm5719-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.cpp | 4 |
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); |