diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-22 07:21:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-22 07:21:55 +0000 |
commit | e09d631d8e6d43c66047dfa49d55192481b6c04e (patch) | |
tree | c61789661eed2a84f52ef624076d82249e91bb74 /llvm/lib | |
parent | 705ac7082bc04df287288053bea63791d7fcd201 (diff) | |
download | bcm5719-llvm-e09d631d8e6d43c66047dfa49d55192481b6c04e.tar.gz bcm5719-llvm-e09d631d8e6d43c66047dfa49d55192481b6c04e.zip |
fix a typo
llvm-svn: 62761
Diffstat (limited to 'llvm/lib')
-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 2a456dce33d..e498647c447 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -4380,7 +4380,7 @@ void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To, assert(From != To.getNode() && "Cannot replace uses of with self"); // Iterate over all the existing uses of From. This specifically avoids - // visiting any new uses of From that arrise while the replacement is + // visiting any new uses of From that arise while the replacement is // happening, because any such uses would be the result of CSE: If an // existing node looks like From after one of its operands is replaced // by To, we don't want to replace of all its users with To too. |