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 | e70909b8c94b18ae5fcfe8010251d2527704d58b (patch) | |
tree | 8743c7e2be1337f809632aea24347e57cbaf4938 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 256baa4b1fbccfea33409185da5db2919e3b90fd (diff) |
fix a typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62761 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 2a456dce33..e498647c44 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/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. |