diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-02 00:05:03 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-02 00:05:03 +0000 |
commit | 2f83b4786321af9fe19a6651287ed2b2ae77d21f (patch) | |
tree | b5d9c6a4af3e4fa4715a1e1fadc45096a51d31db | |
parent | ea6357828baf53f19a8881be3372526c933ace87 (diff) | |
download | bcm5719-llvm-2f83b4786321af9fe19a6651287ed2b2ae77d21f.tar.gz bcm5719-llvm-2f83b4786321af9fe19a6651287ed2b2ae77d21f.zip |
Fix a typo in a comment.
llvm-svn: 50562
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index dfd422a4a93..18bb0400080 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/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); |